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