0
9
llucycodes42
The code if (cond) will only execute if the condition is true. The code else will execute if the condition is false.
Shortcut: ifelseend
if (cond):
else:
endif;
0
9
llucycodes42
The code if (cond) will only execute if the condition is true. The code else will execute if the condition is false.
Shortcut: ifelseend
if (cond):
else:
endif;