webpack/examples/source-map/example.coffee

12 lines
190 B
CoffeeScript

# Taken from http://coffeescript.org/
# Objects:
math =
root: Math.sqrt
square: square
cube: (x) -> x * square x
# Splats:
race = (winner, runners...) ->
print winner, runners