RosettaCodeData/Task/Conditional-structures/NetRexx/conditional-structures-3.netrexx

7 lines
160 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
-- 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