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

16 lines
402 B
Text

-- simple construct
select
when logicalCondition1 then condition1()
when logicalCondition2 then condition2()
otherwise conditionDefault()
end
-- set up a catch block to intercept missing OTHERWISE clause
do
select
when logicalCondition1 then condition1()
when logicalCondition2 then condition2()
end
catch ex1 = NoOtherwiseException
ex1.printStackTrace()
end