Skip to content

Instantly share code, notes, and snippets.

@dsci
Created March 22, 2012 13:13
Show Gist options
  • Select an option

  • Save dsci/2158287 to your computer and use it in GitHub Desktop.

Select an option

Save dsci/2158287 to your computer and use it in GitHub Desktop.
Named functions in CoffeeScript
class sum
# Summarizes two numbers.
constructor:(a,b)->
return a+b
c = sum(3,4) #=> 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment