summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
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