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

6 lines
160 B
Text

-- simple construct
select case cc
when 'A' then say 'the case is A'
when 'B' then say 'the case is B'
otherwise say 'selection not recognized'
end