jashkenas--coffeescript/documentation/js/intro.js

7 lines
119 B
JavaScript
Raw Normal View History

2009-12-21 16:41:45 +00:00
(function(){
// CoffeeScript on the left, JS on the right.
2009-12-21 16:41:45 +00:00
var square = function(x) {
return x * x;
};
})();