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

8 lines
106 B
CoffeeScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
s = if condition then "yup" else "nope"
# alternate form
s = \
if condition
then "yup"
else "nope"