mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
8 lines
108 B
JavaScript
8 lines
108 B
JavaScript
(function(){
|
|
|
|
// square: x => x * x
|
|
var square = function(x) {
|
|
return x * x;
|
|
};
|
|
var a = 5;
|
|
})(); |