RosettaCodeData/Task/Conditional-structures/Pascal/conditional-structures-3.pas

8 lines
128 B
ObjectPascal
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Case X of
'A' : statement ;
'B' : statement ;
in ['C'..'W'] : statement ;
else
Statement ;
end;