7.4.1 ‘out()

out()’ is a really simple function that prints messages to the standard output. It prints every argument with a newline. It is not meant to communicate with the user, it just exists to have a simple function to interact with other functions.

$ out "This is an example call" "How are you?"
This is an example call
How are you?