summaryrefslogtreecommitdiffstats
path: root/test/test3.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/test3.t')
-rw-r--r--test/test3.t10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test3.t b/test/test3.t
new file mode 100644
index 0000000..682f707
--- /dev/null
+++ b/test/test3.t
@@ -0,0 +1,10 @@
+fun main[]
+ a = 3
+ b = 5
+ if (a > b)
+ c = 1
+ else
+ c = 0
+ end
+ @c
+end