std.io

One function.

import std.io

io.print("hello")        # identical to the global print("hello")

io.print(value) behaves exactly like the global print.

Why it exists

For the case where something in scope shadows print - a module you imported, or a definition of your own - and for code that prefers an explicit io. prefix.

That is the whole module. Nothing else lives here:

you wantuse
Reading and writing filesstd.fs
Formatting a stringstd.fmt
Leveled application outputstd.log
Printing without a newlinethe global print_no_newline
Terminal colour and cursor controlstd.term