Function std::io::println

Overview
fn println(message: String)

Prints to output, with a newline.

This is the actual output hook, and if you install rune modules without I/O enabled this will not be defined. It is then up to someone else to provide an implementation.

Examples

println("Hi!");