summaryrefslogtreecommitdiff
path: root/test/forloop3.lm
diff options
context:
space:
mode:
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