Library print

This is exported from the core library, which means you don't need to import it.

Functions

debug object/any -> none
Prints the given object for debugging.
Does not yield the currently running task.

debug -> none
Prints an empty line for debugging.
Does not yield the currently running task.

print message/any -> none
Prints the message.
The resulting message is stringified using Object.stringify.

print -> none
Prints an empty line.
This function is generally used to improve the output of the console output, but may have no effect on other receivers of the print message.