Created
March 22, 2012 13:13
-
-
Save dsci/2158287 to your computer and use it in GitHub Desktop.
Named functions in CoffeeScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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