aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo/tests/loops.lingo
diff options
context:
space:
mode:
Diffstat (limited to 'engines/director/lingo/tests/loops.lingo')
-rw-r--r--engines/director/lingo/tests/loops.lingo22
1 files changed, 22 insertions, 0 deletions
diff --git a/engines/director/lingo/tests/loops.lingo b/engines/director/lingo/tests/loops.lingo
new file mode 100644
index 0000000000..0c7592a12a
--- /dev/null
+++ b/engines/director/lingo/tests/loops.lingo
@@ -0,0 +1,22 @@
+set x = 5
+if x <= 5 then set x = 6 end if
+if (x = 5) then
+set x = 7 -- this is comment
+else
+set x = 8
+-- this is another comment
+end if
+put x
+-- this is more comment
+set y = 1
+repeat while (y < 5)
+set y = y + 1
+put y
+end repeat
+
+repeat with z = 10 to 15
+put z
+end repeat
+repeat with y = 5 down to 1
+put y
+end repeat