summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-01-03 00:08:48 -0700
committerMike Buland <eichlan@xagasoft.com>2012-01-03 00:08:48 -0700
commit8b9a15a755ebc6681ff6be808615e375cb567080 (patch)
treec836f3a7a338e6bcc1fe88fe1207819005b92a83 /test.stage
parent340de5ebabbc60727b2aeb85b9faa72a75f1628b (diff)
downloadstage-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.stage12
1 files changed, 5 insertions, 7 deletions
diff --git a/test.stage b/test.stage
index 66a9b70..4ffec79 100644
--- a/test.stage
+++ b/test.stage
@@ -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