diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2021-10-29 20:06:51 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2021-10-29 20:06:51 -0400 |
commit | 3395cd7dc356b61fe48ee9d755eef8a7b19ee9f1 (patch) | |
tree | 7ff4dcc5fc9e24021fd5d754a8a8ecd2df3a6df4 /tests/literal-test.tnsl | |
parent | 8502bdd410c5a685a66a218fa97ddd2e7d207d30 (diff) |
[AST] Statement parsing (incomplete)
Still need to figure out a check for a type followed by a value
Diffstat (limited to 'tests/literal-test.tnsl')
-rw-r--r-- | tests/literal-test.tnsl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/literal-test.tnsl b/tests/literal-test.tnsl index 1841159..73f5f77 100644 --- a/tests/literal-test.tnsl +++ b/tests/literal-test.tnsl @@ -15,8 +15,8 @@ #/ # These should all work -;[]char s = "\"" -;[]char st="\\" +;{}char s = "\"" +;{}char st="\\" ;int i = 0 ;int j=1 @@ -40,4 +40,5 @@ ;int k = .1 -;int l = 0x01
\ No newline at end of file +;int l = 0x01 + |