diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-07-21 00:15:20 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-07-21 00:15:20 -0400 |
commit | 308a427f3cdb2c7f618b0d48640d064b88bbbceb (patch) | |
tree | 439ea530d05ae31ef6a92bf9b5d16483c3bcd270 /tnslc/tests/simple | |
parent | 2f282dd62b9019b6e6613f4af5f50448089497ad (diff) |
Basic tokenizer
Diffstat (limited to 'tnslc/tests/simple')
-rw-r--r-- | tnslc/tests/simple/comments.tnsl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tnslc/tests/simple/comments.tnsl b/tnslc/tests/simple/comments.tnsl index dbece20..36079e4 100644 --- a/tnslc/tests/simple/comments.tnsl +++ b/tnslc/tests/simple/comments.tnsl @@ -24,7 +24,8 @@ # It is a doc comment of a code block because it starts with '/##' instead of '/#' # and ends with '# ;' which ends the comment and opens a block. # This doc comment is on the main function -#; main /# Comment inside function declaration #/ [int /# Comment inside this list of outputs #/ ] +#/ +/; main /# Comment inside function declaration #/ [int /# Comment inside this list of outputs #/ ] return 0 # line comment inside a function /# Block comment inside function #/ ;/ |