aboutsummaryrefslogtreecommitdiffstats
path: root/test3
diff options
context:
space:
mode:
Diffstat (limited to 'test3')
-rw-r--r--test325
1 files changed, 0 insertions, 25 deletions
diff --git a/test3 b/test3
deleted file mode 100644
index 6bf6064..0000000
--- a/test3
+++ /dev/null
@@ -1,25 +0,0 @@
-# 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
-}
-