Operators now respect new lines as being spaced.

This commit is contained in:
Timothy Jones
2010-10-21 14:27:25 +13:00
parent 31746ce692
commit e694b41a94
3 changed files with 13 additions and 0 deletions

View File

@@ -152,3 +152,9 @@ a = -> share++ if share is 0
b = -> share++ if share is 1
c = -> share++ if share is 2
ok a() not in [b(),c()] and share is 3
# Operators should respect new lines as spaced.
a = 123 +
456
ok a is 579