Created
August 17, 2011 07:13
-
-
Save qingfeng/1151005 to your computer and use it in GitHub Desktop.
Hello Coffee Script
This file contains 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
number = 42 | |
sqr = (x) -> x*x | |
x = sqr number | |
alert x |
This file contains 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
(function() { | |
var number, sqr, x; | |
number = 42; | |
sqr = function(x) { | |
return x * x; | |
}; | |
x = sqr(number); | |
alert(x); | |
}).call(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment