diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-24 14:13:29 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-24 14:13:29 -0400 |
commit | dab3b1d51ea9f7f314a37aecb643dc4b7e52fe98 (patch) | |
tree | 6a0eaefcaa8ec0027aa23068595c93071d5e7af0 /tests/test3 | |
parent | b761569b3aabfb9cd2034d737d4223de534d3dcb (diff) |
tests to folder
Diffstat (limited to 'tests/test3')
-rw-r--r-- | tests/test3 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/test3 b/tests/test3 new file mode 100644 index 0000000..6bf6064 --- /dev/null +++ b/tests/test3 @@ -0,0 +1,25 @@ +# test3 +# verify builtin functions, conditionals and such + +a = 5 + +func(checka) { + if (a == 5) { + print("a == 5") + } else { + print("a != 5") + } +} + +checka() + +print("Increment a...") +a = a + 1 +checka() + +d = 0 +while (d < 20) { + print(d) + d = d + 1 +} + |