diff options
Diffstat (limited to 'test.stage')
-rw-r--r-- | test.stage | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -17,16 +17,16 @@ situation <<start>> | |||
17 | { | 17 | { |
18 | setup | 18 | setup |
19 | { | 19 | { |
20 | x = 10; | 20 | x = [5, 4, 3]; |
21 | display( x ); | 21 | x = x + [9, 8, 7]; |
22 | x /= 2; | 22 | display( x[4] ); |
23 | display( x ); | 23 | x[4] = 112; |
24 | x *= 4; | 24 | display ('----'); |
25 | display( x ); | 25 | for each i in x do |
26 | x -= 10; | 26 | { |
27 | display( x ); | 27 | display( i ); |
28 | x += 20; | 28 | } |
29 | display( x ); | 29 | |
30 | exit(); | 30 | exit(); |
31 | } | 31 | } |
32 | 32 | ||