else


if else

if else

if(condition) { BLOC1 } else { BLOC2 }

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