9 lines
118 B
Text
9 lines
118 B
Text
|
|
if conditionA:
|
||
|
|
% do something
|
||
|
|
elseif conditionB:
|
||
|
|
% do something
|
||
|
|
% more elseif, if needed...
|
||
|
|
else:
|
||
|
|
% do this
|
||
|
|
fi;
|