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