RosettaCodeData/Task/Conditional-structures/CoffeeScript/conditional-structures-3.coffee
2023-07-01 13:44:08 -04:00

7 lines
106 B
CoffeeScript

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