The Hyper Programming Language |
home | language reference | compiler | hyper on launchpad |
This is the class reference of standard library class "system.Out".
import system.stdio
This import file is available since version 0.3.32 of the compiler.
namespace system
static class Out
This class provides simple console output functionality.
none
static procedure line()
Prints a newline on the standard output stream.
static procedure line(s : string)
Prints the given string on the standard output stream followed by a newline character.
static procedure line(c : char)
Prints the given character on the standard output stream followed by a newline character. Available since version 0.4.1 of the compiler.
static procedure print(s : string)
Prints the given string on the standard output stream.
static procedure print(c : char)
Prints the given character on the standard output stream. Available since version 0.4.1 of the compiler.
none