aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test7
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test7')
-rw-r--r--tests/test714
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)