From 01d6580a17d5dc00b84cc3e72e0a86b090c1c6bd Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Fri, 14 Oct 2022 01:21:12 -0400 Subject: Start to fill out compile_statement more --- libtnsl/box/list.tnsl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libtnsl/box/list.tnsl') 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 -- cgit v1.2.3