mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
11 lines
248 B
C#
11 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.
|