RosettaCodeData/Task/Flow-control-structures/Oz/flow-control-structures-2.oz

16 lines
262 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
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}}