1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
jashkenas--coffeescript/test/test_if.coffee
2010-04-03 10:39:32 -04:00

35 lines
367 B
CoffeeScript

a: b: d: true
c: false
result: if a
if b
if c then false else
if d
true
ok result
first: if false then false else second: if false then false else true
ok first
ok second
result: if false
false
else if NaN
false
else
true
ok result
# If statement with a comment-only clause.
result: if false
# comment
else
27
ok result is 27