summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
Diffstat (limited to 'test.stage')
-rw-r--r--test.stage25
1 files changed, 22 insertions, 3 deletions
diff --git a/test.stage b/test.stage
index 42529af..b963b2b 100644
--- a/test.stage
+++ b/test.stage
@@ -13,13 +13,32 @@ global
13 } 13 }
14} 14}
15 15
16function subfunction()
17{
18 if true then
19 {
20 return();
21 }
22 display("subfunction()");
23}
24
25function hello()
26{
27 if true == true then
28 {
29 subfunction();
30 display("Yeah!");
31 return();
32 }
33 display("hello()");
34}
35
16situation <<start>> 36situation <<start>>
17{ 37{
18 setup 38 setup
19 { 39 {
20 global.stuff = {'count': 1}; 40 hello();
21 global.stuff['count'] += 5; 41 display("situation");
22 display( global.stuff['count'] );
23 exit(); 42 exit();
24 } 43 }
25 44