summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
Diffstat (limited to 'test.stage')
-rw-r--r--test.stage10
1 files changed, 2 insertions, 8 deletions
diff --git a/test.stage b/test.stage
index 2ae34ab..d1ba1b0 100644
--- a/test.stage
+++ b/test.stage
@@ -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 }