NL


new ligne

NL

Provokes a new line.

Examples:

1) for(i=1,5)$i;
prints:
         1 2 3 4 5
2) for(i=1,5){$i;NL;}
prints:
         1
         2
         3
         4
         5