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.sy20
1 files changed, 10 insertions, 10 deletions
diff --git a/progs/tests/auto/else_if.sy b/progs/tests/auto/else_if.sy
index 18b64f6..f31453e 100644
--- a/progs/tests/auto/else_if.sy
+++ b/progs/tests/auto/else_if.sy
@@ -1,12 +1,12 @@
start :: fn {
-a := 1
- res := 0
- if a == 0 {
- <!>
- } else if a == 1 {
- res = 1
- } else {
- <!>
- }
- res <=> 1
+ a := 1
+ res := 0
+ if a == 0 {
+ <!>
+ } else if a == 1 {
+ res = 1
+ } else {
+ <!>
+ }
+ res <=> 1
}