summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
Diffstat (limited to 'test.stage')
-rw-r--r--test.stage8
1 files changed, 7 insertions, 1 deletions
diff --git a/test.stage b/test.stage
index 3fe467c..66a9b70 100644
--- a/test.stage
+++ b/test.stage
@@ -17,7 +17,13 @@ situation <<start>>
17{ 17{
18 setup 18 setup
19 { 19 {
20 display( random( 1, 3 ) ); 20 stuff = {};
21 stuff['bob'] = {'joe': 'hi', 'sub': {1: 5, 2: 8} };
22 stuff['bob']['sub'][55] = "aoeu";
23 stuff['bob'] = 'hia';
24 stuff['joe'] = stuff['bob'];
25 stuff['joe'] += 'aoeu';
26 display( stuff['bob']['sub'][55] );
21 exit(); 27 exit();
22 } 28 }
23 29