7 lines
106 B
CoffeeScript
7 lines
106 B
CoffeeScript
s = if condition then "yup" else "nope"
|
|
|
|
# alternate form
|
|
s = \
|
|
if condition
|
|
then "yup"
|
|
else "nope"
|