summaryrefslogtreecommitdiff
path: root/tnslc/enum.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2023-05-18 23:30:18 -0400
committerKyle Gunger <kgunger12@gmail.com>2023-05-18 23:30:18 -0400
commitfe7d97a0a608398f500b1c64ff885acecf2541d5 (patch)
tree2518859272af7dc0d4e1b0a4b6f16b342d5d35f4 /tnslc/enum.tnsl
parentb6cd30ba672c64f3d96aa2b0c98bc13f4c603d21 (diff)
File reading/writing
Diffstat (limited to 'tnslc/enum.tnsl')
-rw-r--r--tnslc/enum.tnsl9
1 files changed, 9 insertions, 0 deletions
diff --git a/tnslc/enum.tnsl b/tnslc/enum.tnsl
new file mode 100644
index 0000000..e8c4932
--- /dev/null
+++ b/tnslc/enum.tnsl
@@ -0,0 +1,9 @@
+# to get working
+
+enum TEST_ENUM [int] {
+ i = 0
+}
+
+/; main [int]
+ return TEST_ENUM.i
+;/ \ No newline at end of file