Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Last active August 29, 2015 14:26
Show Gist options
  • Save pumpkincouture/89221d5d43ea3497b20b to your computer and use it in GitHub Desktop.
Save pumpkincouture/89221d5d43ea3497b20b to your computer and use it in GitHub Desktop.
# A multi-line function with correct whitespace
func = ->
"bar"
# A function with arguments
times = (a, b) -> a * b
# Multi-argument function
sum = (nums...) ->
result = 0
nums.forEach (n) -> result += n
result
# Function called if invoked with an argument
a = "Howdy!"
alert a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment