diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-01-03 00:08:48 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-01-03 00:08:48 -0700 |
commit | 8b9a15a755ebc6681ff6be808615e375cb567080 (patch) | |
tree | c836f3a7a338e6bcc1fe88fe1207819005b92a83 /test.stage | |
parent | 340de5ebabbc60727b2aeb85b9faa72a75f1628b (diff) | |
download | stage-8b9a15a755ebc6681ff6be808615e375cb567080.tar.gz stage-8b9a15a755ebc6681ff6be808615e375cb567080.tar.bz2 stage-8b9a15a755ebc6681ff6be808615e375cb567080.tar.xz stage-8b9a15a755ebc6681ff6be808615e375cb567080.zip |
New functions, fixes, and a working bloodfields.
Diffstat (limited to 'test.stage')
-rw-r--r-- | test.stage | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -17,13 +17,11 @@ situation <<start>> | |||
17 | { | 17 | { |
18 | setup | 18 | setup |
19 | { | 19 | { |
20 | stuff = {}; | 20 | for each i in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] do |
21 | stuff['bob'] = {'joe': 'hi', 'sub': {1: 5, 2: 8} }; | 21 | { |
22 | stuff['bob']['sub'][55] = "aoeu"; | 22 | display( random(0.25, 0.5)*10 ); |
23 | stuff['bob'] = 'hia'; | 23 | } |
24 | stuff['joe'] = stuff['bob']; | 24 | display( 0.25 * 10.0 ); |
25 | stuff['joe'] += 'aoeu'; | ||
26 | display( stuff['bob']['sub'][55] ); | ||
27 | exit(); | 25 | exit(); |
28 | } | 26 | } |
29 | 27 | ||