RosettaCodeData/Task/Conditional-structures/NetRexx/conditional-structures-3.netrexx
2023-07-01 13:44:08 -04: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