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

adding a note in the docs about how to build the parser and install the gem

This commit is contained in:
Jeremy Ashkenas 2009-12-31 18:22:51 -05:00
parent 43edd29d22
commit abfc9f5a2d
4 changed files with 31 additions and 17 deletions

View file

@ -4,7 +4,7 @@
change_numbers = function change_numbers() {
var new_num;
num = 2;
return (new_num = 3);
return (new_num = 3);
};
new_num = change_numbers();
})();