summaryrefslogtreecommitdiff
path: root/test/counting1.lm
diff options
context:
space:
mode:
Diffstat (limited to 'test/counting1.lm')
-rw-r--r--test/counting1.lm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/counting1.lm b/test/counting1.lm
index af302c1b..c5a98d54 100644
--- a/test/counting1.lm
+++ b/test/counting1.lm
@@ -80,11 +80,11 @@ def start
{
for List:counted_list in lhs {
match List [Count:number Items:count_items]
- print( 'num items: ', Count.data.atoi(), '\n' )
+ print( 'num items: ' Count.data.atoi() '\n' )
i: int = 1
for Item:item in Items {
- print( ' item ', i, ': ', Item, '\n' )
+ print( ' item ' i ': ' Item '\n' )
i = i + 1
}
}