jashkenas--coffeescript/documentation/js/punctuation.js

8 lines
265 B
JavaScript
Raw Normal View History

2009-12-21 16:41:45 +00:00
(function(){
// Comments start with hash marks. Periods mark the end of a block.
2009-12-21 16:41:45 +00:00
var left_hand = raining ? umbrella : parasol;
// To signal the beginning of the next expression,
// use "then", or a newline.
2009-12-21 16:41:45 +00:00
left_hand = raining ? umbrella : parasol;
})();