Function std::io::print

Overview
fn print(m: String)

Prints to output.

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.

See also the print! macro.

Examples

print("Hi!");