Created
May 4, 2011 19:34
Revisions
-
netzpirat revised this gist
May 4, 2011 . 2 changed files with 14 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,8 @@ # Everything is an Expression -> greeting = 'Hi CoffeeScripter' # Expect it's undefined -> greeting = 'Hi CoffeeScripter' return undefined 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,10 @@ (function() { (function() { var greeting; return greeting = 'Hi CoffeeScripter'; }); (function() { var greeting; greeting = 'Hi CoffeeScripter'; }); }).call(this); -
netzpirat created this gist
May 4, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ -> 'hi' -> return undefined 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ (function() { (function() { return 'hi'; }); (function() {}); }).call(this);