mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-14 09:17:55 -05:00
12 lines
248 B
C#
12 lines
248 B
C#
# Comments start with hash marks.
|
|
|
|
# Periods mark the end of a block.
|
|
left_hand: if raining then umbrella else parasol.
|
|
|
|
# To signal the beginning of the next expression,
|
|
# use "then", or a newline.
|
|
left_hand: if raining
|
|
umbrella
|
|
else
|
|
parasol.
|