summaryrefslogtreecommitdiff
path: root/test/repeat1.lm
diff options
context:
space:
mode:
Diffstat (limited to 'test/repeat1.lm')
-rw-r--r--test/repeat1.lm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/repeat1.lm b/test/repeat1.lm
index 69e0ef82..9c907ff6 100644
--- a/test/repeat1.lm
+++ b/test/repeat1.lm
@@ -16,10 +16,10 @@ parse Input: start[ stdin ]
match Input [ItemList: item*]
for I: item* in repeat( ItemList )
- print( ^I '\n' )
+ print( ^I, '\n' )
for I: item* in rev_repeat( ItemList )
- print( ^I '\n' )
+ print( ^I, '\n' )
##### IN #####
a b ( c d ) e ( f g ) h i
##### EXP #####