diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-30 15:44:06 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-30 15:44:06 -0700 |
commit | ba7897ebadbc03d99200fda03a574a57b650e429 (patch) | |
tree | b13548a7c33e52d9f09e1563b1b284a041edb216 /test.stage | |
parent | f2ee67558acbe3c418a7558587b56158d593d88d (diff) | |
download | stage-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.stage | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||