mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-18 03:21:20 -05:00
10 lines
106 B
CoffeeScript
10 lines
106 B
CoffeeScript
a: b: d: true
|
|
c: false
|
|
|
|
result: if a
|
|
if b
|
|
if c then false else
|
|
if d
|
|
true
|
|
|
|
print result |