NESL    up
 
 


 Hello World   Michael Neumann
% Hello World %

print_string("Hello World\n");
Prints "Hello World" onto the screen.


 Squares   Michael Neumann
function pt(x) = print_string( @(a*a) ++ " " );

{ pt(a) : a in [1..11] };
Outputs the squares from 1 to 10.