mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-18 03:21:20 -05:00
22 lines
226 B
CoffeeScript
22 lines
226 B
CoffeeScript
# comment
|
|
func: ->
|
|
# comment
|
|
false
|
|
false # comment
|
|
false
|
|
# comment
|
|
true
|
|
|
|
switch 'string'
|
|
# comment
|
|
when false then something()
|
|
# comment
|
|
when null
|
|
something_else()
|
|
|
|
->
|
|
code()
|
|
# comment
|
|
|
|
puts func()
|