Easypt

writeLine

..Root.console.writeLine

Writes all arguments to the standard output followed by newline sequence.

Child of:

console

Signatures:

NativeCallable, Callable

Example:

import("console");

while (true, {
    if (console.read().==("beep"), {
        console.beep();
        console.writeLine(">_<");
    });
});