summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
Diffstat (limited to 'test.stage')
-rw-r--r--test.stage19
1 files changed, 1 insertions, 18 deletions
diff --git a/test.stage b/test.stage
index deef755..3fe467c 100644
--- a/test.stage
+++ b/test.stage
@@ -17,24 +17,7 @@ situation <<start>>
17{ 17{
18 setup 18 setup
19 { 19 {
20 dict = {1: "Hello"}; 20 display( random( 1, 3 ) );
21 dict['bob'] = 'yup';
22 display( dict );
23 dict -= 1;
24 display( dict );
25
26 lst = [55];
27 lst += 112;
28 display( lst );
29 lst -= 55;
30 display( lst );
31 lst += "hi";
32 lst += "Things";
33 display("---For each test---");
34 for each x : y in dict do
35 {
36 display( x );
37 }
38 exit(); 21 exit();
39 } 22 }
40 23