summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-29 15:53:38 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-29 15:53:38 -0700
commit1bd7f709f5217b248fcb3a4c7be2eeca84fec795 (patch)
tree9c146a63d57eb60542b22271dfdcec363ae2af84 /test.stage
parent162ccd918698f53ef9ff7ba80091969d93aa789d (diff)
downloadstage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.tar.gz
stage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.tar.bz2
stage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.tar.xz
stage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.zip
This commit...I dunno
I'm using a different version of everything, and I don't know if it's forward compatible or not.
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}