summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-29 23:43:25 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-29 23:43:25 -0700
commite9ca0738a4b18032151af42baca1f88629408d52 (patch)
treebf264d9a029589a61c057acb00f15d4b675e3b90 /test.stage
parentca31bda6b8dd27d59c053a4f391164496577f479 (diff)
downloadstage-e9ca0738a4b18032151af42baca1f88629408d52.tar.gz
stage-e9ca0738a4b18032151af42baca1f88629408d52.tar.bz2
stage-e9ca0738a4b18032151af42baca1f88629408d52.tar.xz
stage-e9ca0738a4b18032151af42baca1f88629408d52.zip
While loops work perfectly :)
Diffstat (limited to 'test.stage')
-rw-r--r--test.stage6
1 files changed, 6 insertions, 0 deletions
diff --git a/test.stage b/test.stage
index c19dac9..3fa32c0 100644
--- a/test.stage
+++ b/test.stage
@@ -57,5 +57,11 @@ situation <<stuff>>
57 enter 57 enter
58 { 58 {
59 display('''Entered stuff''' + player.name); 59 display('''Entered stuff''' + player.name);
60 count = 0;
61 while count < 5 do
62 {
63 display('thing to count!');
64 count += 1;
65 }
60 } 66 }
61} 67}