summaryrefslogtreecommitdiff
path: root/test/forloop3.lm
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2014-02-01 19:49:33 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2014-02-01 19:49:33 +0000
commit404ae0f284a3b2d41fcdb53826550e4dfec5c65c (patch)
treecc446af26234e4465b8cc168b720ec44816ff5ab /test/forloop3.lm
downloadcolm-tarball-404ae0f284a3b2d41fcdb53826550e4dfec5c65c.tar.gz
Diffstat (limited to 'test/forloop3.lm')
-rw-r--r--test/forloop3.lm21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/forloop3.lm b/test/forloop3.lm
new file mode 100644
index 0000000..3749244
--- /dev/null
+++ b/test/forloop3.lm
@@ -0,0 +1,21 @@
+##### LM #####
+lex
+ token id / 'a' .. 'z' /
+ ignore / '\n' | '\t' | ' ' /
+end
+
+def start
+ [id*]
+
+parse P: start[stdin]
+Start: start = P
+for Id: id in triter(Start) {
+ print( ^Id )
+ print( '\n' )
+}
+##### IN #####
+d e f
+##### EXP #####
+d
+e
+f