summaryrefslogtreecommitdiff
path: root/tests/test_conditional_4.tnsl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_conditional_4.tnsl')
-rw-r--r--tests/test_conditional_4.tnsl16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test_conditional_4.tnsl b/tests/test_conditional_4.tnsl
new file mode 100644
index 0000000..d31944a
--- /dev/null
+++ b/tests/test_conditional_4.tnsl
@@ -0,0 +1,16 @@
+
+/; main [int]
+ int a = 0
+ int b = 69
+ int c = 70
+
+ /; if (a < b && b > c)
+ return c
+ ;; else if (b > c && a < b)
+ return a
+ ;; else if (a > b && b > c)
+ return 1
+ ;/
+
+ return b
+;/