up previous next
println

print the value of an expression

Syntax
println E_1,...,E_n
PrintLn E_1,...,E_n

Description
This command is equivalent to print with a final newline; in other words, it prints the values of its arguments, then moves the cursor to the next line.

Example
/**/  for i := 1 to 3 do  print i;  endfor;
123

/**/  for i := 1 to 3 do  println i;  endfor;
1
2
3

See Also