1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

docs for assignment-as-expression

This commit is contained in:
Jeremy Ashkenas 2009-12-25 23:17:34 -08:00
parent adaae0ccae
commit 834442148b
21 changed files with 190 additions and 128 deletions

View file

@ -1,4 +1,5 @@
(function(){
var greeting = "Hello CoffeeScript";
var difficulty = 0.5;
var difficulty, greeting;
greeting = "Hello CoffeeScript";
difficulty = 0.5;
})();