converted the tests to use optional parentheses -- lot's of little subtleties to work out

This commit is contained in:
Jeremy Ashkenas
2010-01-24 23:40:45 -05:00
parent 70e3a6ef2f
commit a5d39efdd2
25 changed files with 106 additions and 101 deletions

View File

@@ -3,7 +3,7 @@ func: =>
b: []
while a >= 0
b.push('o')
b.push 'o'
a--
c: {
@@ -26,4 +26,4 @@ func: =>
c.single: c.list[1..1][0]
print(func() is '-')
print func() is '-'