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