diff options
Diffstat (limited to 'test.stage')
-rw-r--r-- | test.stage | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -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 | ||
31 | situation <<stuff>> | ||
32 | { | ||
33 | enter | ||
34 | { | ||
35 | display('''Entered stuff'''); | ||
36 | } | ||
37 | } | ||