The IO
library is the main way for Kram-programs to communicate with the outside world.
A simple example is
that prints Hello World
to the screen.
IO::Print(Type ... )
Prints each parameter one by one to the screen as they are.
IO::Println(Type ... )
Prints each parameter one by one to the screen followed by a newline.
IO::Debug(Type ... )
Prints each parameter as well as information about the type.
Eg: