summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-01-18 23:02:49 -0700
committerMike Buland <eichlan@xagasoft.com>2012-01-18 23:02:49 -0700
commit2d490ab892c7067eccd524dc67b5e12cf759f8fd (patch)
tree77ddec53dd29f0e46670818321c045609062ff7b /test.stage
parent3afa514e11dc16e3a166b39ad411465abd971d8a (diff)
downloadstage-2d490ab892c7067eccd524dc67b5e12cf759f8fd.tar.gz
stage-2d490ab892c7067eccd524dc67b5e12cf759f8fd.tar.bz2
stage-2d490ab892c7067eccd524dc67b5e12cf759f8fd.tar.xz
stage-2d490ab892c7067eccd524dc67b5e12cf759f8fd.zip
Interface system works.
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 }