RosettaCodeData/Task/Conditional-structures/CoffeeScript/conditional-structures-3.coffee
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

7 lines
106 B
CoffeeScript

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