diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 23:43:25 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 23:43:25 -0700 |
commit | e9ca0738a4b18032151af42baca1f88629408d52 (patch) | |
tree | bf264d9a029589a61c057acb00f15d4b675e3b90 /test.stage | |
parent | ca31bda6b8dd27d59c053a4f391164496577f479 (diff) | |
download | stage-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.stage | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 | } |