RosettaCodeData/Task/Conditional-structures/CoffeeScript/conditional-structures-3.coffeescript
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
106 B
Text

s = if condition then "yup" else "nope"
# alternate form
s = \
if condition
then "yup"
else "nope"