1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

more half-assignment tests

This commit is contained in:
Jeremy Ashkenas 2010-03-21 23:39:05 -04:00
parent 16f9a2e6b7
commit 7d6c050048

View file

@ -33,4 +33,13 @@ ok val is 'other'
val: null
val: ? 'value'
ok val is 'value'
ok val is 'value'
val: 6
val: -(10)
ok val is -10
val: - (10)
ok val is -20