mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
8 lines
No EOL
265 B
JavaScript
8 lines
No EOL
265 B
JavaScript
(function(){
|
|
|
|
// Comments start with hash marks. Periods mark the end of a block.
|
|
var left_hand = raining ? umbrella : parasol;
|
|
// To signal the beginning of the next expression,
|
|
// use "then", or a newline.
|
|
left_hand = raining ? umbrella : parasol;
|
|
})(); |