summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-30 15:44:06 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-30 15:44:06 -0700
commitba7897ebadbc03d99200fda03a574a57b650e429 (patch)
treeb13548a7c33e52d9f09e1563b1b284a041edb216 /test.stage
parentf2ee67558acbe3c418a7558587b56158d593d88d (diff)
downloadstage-ba7897ebadbc03d99200fda03a574a57b650e429.tar.gz
stage-ba7897ebadbc03d99200fda03a574a57b650e429.tar.bz2
stage-ba7897ebadbc03d99200fda03a574a57b650e429.tar.xz
stage-ba7897ebadbc03d99200fda03a574a57b650e429.zip
Dictionaries can be created, in operator works.
Diffstat (limited to 'test.stage')
-rw-r--r--test.stage3
1 files changed, 2 insertions, 1 deletions
diff --git a/test.stage b/test.stage
index 1c58991..ff159ff 100644
--- a/test.stage
+++ b/test.stage
@@ -61,8 +61,9 @@ situation <<start>>
61 } 61 }
62 setup 62 setup
63 { 63 {
64 stuff = [5, 10, "bob"]; 64 stuff = {"things": 55, 112: "Bob"};
65 display( stuff ); 65 display( stuff );
66 display( 113 - 1 in stuff );
66 exit(); 67 exit();
67 } 68 }
68 69