Files
coffeescript/test/fixtures/generation/statements_as_expressions.coffee

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
)