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

17 lines
222 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
select (i); /* select on value of variable */
when (1,4,9)
2013-04-10 22:43:41 -07:00
do;
2015-02-20 00:35:01 -05:00
statement_s;
2013-04-10 22:43:41 -07:00
end;
2015-02-20 00:35:01 -05:00
when (11, 42)
2013-04-10 22:43:41 -07:00
do;
2015-02-20 00:35:01 -05:00
statement_s;
2013-04-10 22:43:41 -07:00
end;
2015-02-20 00:35:01 -05:00
other /* everything else */
2013-04-10 22:43:41 -07:00
do;
2015-02-20 00:35:01 -05:00
statement_s;
2013-04-10 22:43:41 -07:00
end;
end;