summaryrefslogtreecommitdiff
path: root/test/counting1.lm
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2011-03-30 19:04:01 +0000
committerAdrian Thurston <thurston@complang.org>2011-03-30 19:04:01 +0000
commite2d471562ef5e0488c17fe8a874bb6d6f32c7bfe (patch)
tree1dcbff982296e72e2bb2474dfeb9a70d5395c67e /test/counting1.lm
parentfb5430c9c2cf2ad1570150316e969ab142288b58 (diff)
downloadcolm-e2d471562ef5e0488c17fe8a874bb6d6f32c7bfe.tar.gz
Commas gone from expression lists. Now consistent with constructors, patterns,
and parameter lists. refs #246.
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
}
}