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 /small-tests/examp.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 'small-tests/examp.tnsl')
-rw-r--r-- | small-tests/examp.tnsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/small-tests/examp.tnsl b/small-tests/examp.tnsl index 196db40..f8579a0 100644 --- a/small-tests/examp.tnsl +++ b/small-tests/examp.tnsl @@ -19,7 +19,7 @@ # pass a variable ;int s = 3 -;byte bitbyte = .2 +;int8 bitbyte = .2 # generic scope block @@ -120,7 +120,7 @@ ;/ -/; switch (i) +/; match (i) # You can do stuff here as well ;int t = 0 |