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

7 lines
119 B
JavaScript

(function(){
// CoffeeScript on the left, JS on the right.
var square = function(x) {
return x * x;
};
})();