Function ::std::io::print

fn print(m: String) -> Tuple

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!");