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/test7 | |
parent | b761569b3aabfb9cd2034d737d4223de534d3dcb (diff) |
tests to folder
Diffstat (limited to 'tests/test7')
-rw-r--r-- | tests/test7 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/test7 b/tests/test7 new file mode 100644 index 0000000..dd4defb --- /dev/null +++ b/tests/test7 @@ -0,0 +1,14 @@ +j = 6 + +func(test) { + i = 0 + while (i < 10) { + i = i + 1 + } + + j = 15 +} + +print(i) +print(" ") +print(j) |