diff options
Diffstat (limited to 'test.stage')
-rw-r--r-- | test.stage | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -17,11 +17,9 @@ situation <<start>> | |||
17 | { | 17 | { |
18 | setup | 18 | setup |
19 | { | 19 | { |
20 | for each i in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] do | 20 | global.stuff = {'count': 1}; |
21 | { | 21 | global.stuff['count'] += 5; |
22 | display( random(0.25, 0.5)*10 ); | 22 | display( global.stuff['count'] ); |
23 | } | ||
24 | display( 0.25 * 10.0 ); | ||
25 | exit(); | 23 | exit(); |
26 | } | 24 | } |
27 | 25 | ||