summaryrefslogtreecommitdiff
path: root/libtnsl/box/list.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-10-14 01:21:12 -0400
committerKyle Gunger <kgunger12@gmail.com>2022-10-14 01:21:12 -0400
commit01d6580a17d5dc00b84cc3e72e0a86b090c1c6bd (patch)
tree0e023e9fac2f030037a3ddce6da0db6d675fad48 /libtnsl/box/list.tnsl
parent0d2c569ed2e408d0c1cbac7f170f4e281601eb24 (diff)
Start to fill out compile_statement more
Diffstat (limited to 'libtnsl/box/list.tnsl')
-rw-r--r--libtnsl/box/list.tnsl8
1 files changed, 4 insertions, 4 deletions
diff --git a/libtnsl/box/list.tnsl b/libtnsl/box/list.tnsl
index 11ba4e1..cdf39d7 100644
--- a/libtnsl/box/list.tnsl
+++ b/libtnsl/box/list.tnsl
@@ -49,18 +49,18 @@
;/
;/
-;struct List {
+;struct List (type T) {
uint length,
- LNode
+ LNode(T)
first,
last
}
-;struct DList {
+;struct DList (type T) {
uint length,
- DLNode
+ DLNode(T)
first,
last
} \ No newline at end of file