diff options
author | Kyle Gunger <corechg@gmail.com> | 2020-09-20 18:18:26 -0400 |
---|---|---|
committer | Kyle Gunger <corechg@gmail.com> | 2020-09-20 18:18:26 -0400 |
commit | 4adc90d9a8e48a5c1841874cae0cb30c3deee6e1 (patch) | |
tree | 4025660d2f9cf825a3b6bf080c590f02405657bf /tests/comment-test.tnsl | |
parent | 99a037c68522a9ff74449a6aa41c546d85d1bc15 (diff) |
Basic updates
- Move preprocessor to it's own file
- Begin working on new delimiters
- Begin working on blocks in the tree
Diffstat (limited to 'tests/comment-test.tnsl')
-rw-r--r-- | tests/comment-test.tnsl | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/tests/comment-test.tnsl b/tests/comment-test.tnsl index fe07b45..cdd33be 100644 --- a/tests/comment-test.tnsl +++ b/tests/comment-test.tnsl @@ -11,12 +11,20 @@ a/# Ok, so this should give no output either #/ -#; +# ; #a # /; -;# +; # stuff a# /;# -#;/ -;/
\ No newline at end of file +# ;/ +;/ + +# More intricate block changing checks + +/# Comment start +Comment end #; if (thing) +;; else if (other_thing) +;# Comment start +End #/
\ No newline at end of file |