diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-01-18 23:02:49 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-01-18 23:02:49 -0700 |
commit | 2d490ab892c7067eccd524dc67b5e12cf759f8fd (patch) | |
tree | 77ddec53dd29f0e46670818321c045609062ff7b /test.stage | |
parent | 3afa514e11dc16e3a166b39ad411465abd971d8a (diff) | |
download | stage-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.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 | } |