RosettaCodeData/Task/Conditional-structures/CoffeeScript/conditional-structures-3.coffee

8 lines
106 B
CoffeeScript
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
s = if condition then "yup" else "nope"
# alternate form
s = \
if condition
then "yup"
else "nope"