else
if else
if(condition) { BLOCK1 } else { BLOCK2 }
If
condition
is true then
BLOCK1
is executed, otherwise
BLOCK2
is executed.
Example:
if(1 > 2) {$"A";NL;} else $"B\n"
produces B