if


if else

if

if(condition) { BLOC1 }

        Si condition est vraie BLOC1 est exécuté.

if else

if(condition) { BLOC1 } else { BLOC2 }

        Si condition est vraie BLOC1 est exécuté sinon BLOC2 est exécuté.
Exemple:
if(1>2) {$"A";NL;} else $"B\n";
produit B