summaryrefslogtreecommitdiff
path: root/tests/l.stage
diff options
context:
space:
mode:
Diffstat (limited to 'tests/l.stage')
-rw-r--r--tests/l.stage32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/l.stage b/tests/l.stage
new file mode 100644
index 0000000..4c2b8e1
--- /dev/null
+++ b/tests/l.stage
@@ -0,0 +1,32 @@
1situation <<start>>
2{
3 enter
4 {
5 x = 5;
6 while x > 0 do
7 {
8 display( x );
9 x-=1;
10 }
11
12 for each j in [1, 2, 4, 8, 16, 32] do
13 {
14 display( j );
15
16 if j == 16 then
17 {
18 goto(<<b>>);
19 }
20 }
21
22 display("Hiya");
23 }
24}
25
26situation <<b>>
27{
28 enter
29 {
30 display("b!");
31 }
32}