15 lines
229 B
Text
15 lines
229 B
Text
|
|
if condition_exp then unique_statement; else unique_statement;
|
||
|
|
|
||
|
|
if condition_exp then
|
||
|
|
unique_statement;
|
||
|
|
else
|
||
|
|
unique_statement;
|
||
|
|
|
||
|
|
if condition_exp
|
||
|
|
then do;
|
||
|
|
list_of_statements;
|
||
|
|
end;
|
||
|
|
else do;
|
||
|
|
list_of_statements;
|
||
|
|
end;
|