RosettaCodeData/Task/Flow-control-structures/Oz/flow-control-structures-2.oz
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

15 lines
262 B
Text

declare
proc {Stupid X}
choice
X = 8
{System.showInfo "choosing 8"}
[] X = 9
{System.showInfo "choosing 9"}
[] X = 10
{System.showInfo "choosing 10"}
end
2 * X = 18
end
in
{Show {SearchOne Stupid}}