RosettaCodeData/Task/Conditional-structures/Tailspin/conditional-structures-1.tailspin
2024-10-16 18:07:41 -07: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