summaryrefslogtreecommitdiff
path: root/apps/examples/bastest/tests/test19.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bastest/tests/test19.bas')
-rw-r--r--apps/examples/bastest/tests/test19.bas20
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/examples/bastest/tests/test19.bas b/apps/examples/bastest/tests/test19.bas
new file mode 100644
index 000000000..aa19fa4ae
--- /dev/null
+++ b/apps/examples/bastest/tests/test19.bas
@@ -0,0 +1,20 @@
+for x=1 to 3
+ if x=1 then
+ print "1a"
+ else
+ if x=2 then
+ print "2a"
+ else
+ print "3a"
+ end if
+ end if
+next
+
+for x=1 to 3
+ if x=1 then
+ print "1b"
+ elseif x=2 then
+ print "2b"
+ elseif x=3 then print "3b"
+next
+