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

36 lines
367 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
ok result
first: if false then false else second: if false then false else true
ok first
ok second
2010-02-13 02:00:39 -05:00
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