RosettaCodeData/Task/Conditional-structures/PL-I/conditional-structures-3.pli

17 lines
222 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
select (i); /* select on value of variable */
when (1,4,9)
do;
statement_s;
end;
when (11, 42)
do;
statement_s;
end;
other /* everything else */
do;
statement_s;
end;
end;