summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-30 23:15:31 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-30 23:15:31 -0700
commit3357b0a0ecc4d36ccd3c2668e9d55aaaefedf4df (patch)
tree1a79525100ddc5cbff5331b2e37312ffce862026 /test.stage
parent70076bb00bdedb57405ed2ef27e2fec172e2f38a (diff)
downloadstage-3357b0a0ecc4d36ccd3c2668e9d55aaaefedf4df.tar.gz
stage-3357b0a0ecc4d36ccd3c2668e9d55aaaefedf4df.tar.bz2
stage-3357b0a0ecc4d36ccd3c2668e9d55aaaefedf4df.tar.xz
stage-3357b0a0ecc4d36ccd3c2668e9d55aaaefedf4df.zip
All variants of for each loop are tested and work
Diffstat (limited to '')
-rw-r--r--test.stage7
1 files changed, 7 insertions, 0 deletions
diff --git a/test.stage b/test.stage
index 9e5c00a..deef755 100644
--- a/test.stage
+++ b/test.stage
@@ -28,6 +28,13 @@ situation <<start>>
28 display( lst ); 28 display( lst );
29 lst -= 55; 29 lst -= 55;
30 display( lst ); 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 }
31 exit(); 38 exit();
32 } 39 }
33 40