aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/auto/else_if.sy
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tests/auto/else_if.sy')
-rw-r--r--progs/tests/auto/else_if.sy12
1 files changed, 0 insertions, 12 deletions
diff --git a/progs/tests/auto/else_if.sy b/progs/tests/auto/else_if.sy
deleted file mode 100644
index 18b64f6..0000000
--- a/progs/tests/auto/else_if.sy
+++ /dev/null
@@ -1,12 +0,0 @@
-start :: fn {
-a := 1
- res := 0
- if a == 0 {
- <!>
- } else if a == 1 {
- res = 1
- } else {
- <!>
- }
- res <=> 1
-}