diff options
Diffstat (limited to 'test/if.mnml')
-rw-r--r-- | test/if.mnml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/if.mnml b/test/if.mnml new file mode 100644 index 0000000..1d273b3 --- /dev/null +++ b/test/if.mnml @@ -0,0 +1,11 @@ +if (1 == 2) { + main1() +} + +else if (true != false) { + main2() +} + +else { + main3() +} |