the existential operator can now be used infix as well

This commit is contained in:
Jeremy Ashkenas
2010-01-16 23:03:54 -05:00
parent 52539ae7d2
commit f6c8e81ea6
4 changed files with 36 additions and 18 deletions

View File

@@ -16,13 +16,3 @@ i: 0
func: => i++
print(1 > func() < 1)
# The conditional assignment based on existence.
a: 5
a: null
a ?= 10
b ?= 10
print(a is 10 and b is 10)