diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 15:53:38 -0700 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 15:53:38 -0700 |
| commit | 1bd7f709f5217b248fcb3a4c7be2eeca84fec795 (patch) | |
| tree | 9c146a63d57eb60542b22271dfdcec363ae2af84 /test.stage | |
| parent | 162ccd918698f53ef9ff7ba80091969d93aa789d (diff) | |
| download | stage-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.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 | } | ||
