RosettaCodeData/Task/Conditional-structures/Oz/conditional-structures-1.oz
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
155 B
Text

proc {PrintParity X}
if {IsEven X} then
{Show even}
elseif {IsOdd X} then
{Show odd}
else
{Show 'should not happen'}
end
end