summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
Diffstat (limited to 'test.stage')
-rw-r--r--test.stage14
1 files changed, 9 insertions, 5 deletions
diff --git a/test.stage b/test.stage
index d1ba1b0..cc765a4 100644
--- a/test.stage
+++ b/test.stage
@@ -13,15 +13,19 @@ global
13 } 13 }
14} 14}
15 15
16function getVal()
17{
18 global.stuff = {'hi': 5 };
19}
20
16situation <<start>> 21situation <<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