diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-30 23:15:31 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-30 23:15:31 -0700 |
commit | 3357b0a0ecc4d36ccd3c2668e9d55aaaefedf4df (patch) | |
tree | 1a79525100ddc5cbff5331b2e37312ffce862026 /test.stage | |
parent | 70076bb00bdedb57405ed2ef27e2fec172e2f38a (diff) | |
download | stage-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.stage | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 | ||