mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-18 19:34:27 -05:00
11 lines
162 B
CoffeeScript
11 lines
162 B
CoffeeScript
# Everything should be able to be an expression.
|
|
|
|
result: while sunny?
|
|
go_outside()
|
|
|
|
print(3 + try
|
|
nonexistent.no_way
|
|
catch error
|
|
print(error)
|
|
3
|
|
) |