println

Prints some text, and moves to the beginning of the next line. Any text printed after a call to println, will thus appear below.

Usage

This function takes zero or more arguments.

    println();

When called without arguments, it just moves to the next line without printing anything.

If one or more arguments are given, each one printed sequentially before advancing to the next line. Examples of usage:

    println(value);
    println("text");
    println("value of PI: ", PI);