diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2023-05-18 23:30:18 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2023-05-18 23:30:18 -0400 |
commit | fe7d97a0a608398f500b1c64ff885acecf2541d5 (patch) | |
tree | 2518859272af7dc0d4e1b0a4b6f16b342d5d35f4 /tnslc/enum.tnsl | |
parent | b6cd30ba672c64f3d96aa2b0c98bc13f4c603d21 (diff) |
File reading/writing
Diffstat (limited to 'tnslc/enum.tnsl')
-rw-r--r-- | tnslc/enum.tnsl | 9 |
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 |