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_fancy_if_statement.coffee

26 lines
No EOL
265 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