summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
Diffstat (limited to 'test.stage')
-rw-r--r--test.stage11
1 files changed, 10 insertions, 1 deletions
diff --git a/test.stage b/test.stage
index 04d959b..2b6e567 100644
--- a/test.stage
+++ b/test.stage
@@ -18,11 +18,20 @@ situation <<start>>
18 setup 18 setup
19 { 19 {
20 name = "Bob"; 20 name = "Bob";
21 display("Hello " + name + ''' and then some'''); 21 display("This is the setup phase for start, " + name);
22 display("???");
22 } 23 }
23 24
24 enter 25 enter
25 { 26 {
27 display('''This is the enter part of the start situation''');
26 } 28 }
27} 29}
28 30
31situation <<stuff>>
32{
33 enter
34 {
35 display('''Entered stuff''');
36 }
37}