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

7 lines
160 B
Plaintext

-- 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