summaryrefslogtreecommitdiff
path: root/tests/test_struct.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-03-06 14:50:50 -0500
committerKyle Gunger <kgunger12@gmail.com>2024-03-06 14:50:50 -0500
commit567eed5e49a927a31b2692c586da1246519fb1a9 (patch)
treea6f9c1b347f193a5708074f29db8d26e5e67cbb9 /tests/test_struct.tnsl
parentb0835a8f23d0fd100ecee28ded3bd621b889a634 (diff)
Some basic tests
Diffstat (limited to 'tests/test_struct.tnsl')
-rw-r--r--tests/test_struct.tnsl14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/test_struct.tnsl b/tests/test_struct.tnsl
new file mode 100644
index 0000000..59a4b78
--- /dev/null
+++ b/tests/test_struct.tnsl
@@ -0,0 +1,14 @@
+struct Vector {
+ ~void data,
+ int
+ size,
+ count,
+ _el_sz
+}
+
+/; main [int]
+ Vector a
+ a.size = 69
+ return a.size
+;/
+