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
273 B
CoffeeScript
Raw Normal View History

2009-12-24 03:12:07 -05:00
a: b: d: true
c: false
result: if a
if b
2009-12-28 23:08:02 -05:00
if c then false else
2009-12-24 03:12:07 -05:00
if d
2009-12-28 23:08:02 -05:00
true
2009-12-24 03:12:07 -05:00
puts result
first: if false then false else second: if false then false else true
puts first
2010-02-13 02:00:39 -05:00
puts second
result: if false
false
else if NaN
false
else
true
puts result