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

15 lines
229 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
if condition_exp then unique_statement; else unique_statement;
2013-04-10 22:43:41 -07:00
2015-02-20 00:35:01 -05:00
if condition_exp then
unique_statement;
2013-04-10 22:43:41 -07:00
else
2015-02-20 00:35:01 -05:00
unique_statement;
if condition_exp
then do;
list_of_statements;
end;
else do;
list_of_statements;
end;