diff options
Diffstat (limited to 'test.stage')
-rw-r--r-- | test.stage | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -13,15 +13,19 @@ global | |||
13 | } | 13 | } |
14 | } | 14 | } |
15 | 15 | ||
16 | function getVal() | ||
17 | { | ||
18 | global.stuff = {'hi': 5 }; | ||
19 | } | ||
20 | |||
16 | situation <<start>> | 21 | situation <<start>> |
17 | { | 22 | { |
18 | setup | 23 | setup |
19 | { | 24 | { |
20 | x = [5, 4, 3]; | 25 | if true then |
21 | x = x + [[9, 8, 7]]; | 26 | { |
22 | display( debugString( x ) ); | 27 | getVal(); |
23 | 28 | } | |
24 | exit(); | ||
25 | } | 29 | } |
26 | 30 | ||
27 | enter | 31 | enter |