RosettaCodeData/Task/Conditional-structures/Tailspin/conditional-structures.tailspin
2023-07-01 13:44:08 -04:00

8 lines
201 B
Text

templates foo
when <=0> do 'zero' -> !OUT::write
when <..0> do
'negative ' -> !OUT::write
-$ -> #
when <?($ mod 2 <=0>)> do 'even' -> !OUT::write
otherwise 'odd' -> !OUT::write
end foo