Std.Console
This page is still under construction!
This feature is still not implemented!
namespace Std.Console
Std.Console abstracts the interaction between the program and the standard input/output
and console window
Functions
@public func write(anytype content)Writes the parameter in the configurated output stream.
If the parameter's type do not implement a toString() method,
it will use the type's structure name instead.
anytype content:
@public func write([]anytype content)Writes the parameter array in the configurated output stream.
If the parameter's type do not implement a toString() method,
it will use the type's structure name instead.
[]anytype content:
@public func writeln(anytype content)Writes the parameter in the configurated output stream.
At the end, will also write the system's line feed string.
If the parameter's type do not implement a toString() method,
it will use the type's structure name instead.
anytype content:
@public func writeln([]anytype content)Writes the parameter in the configurated output stream.
At the end, will also write the system's line feed string.
If the parameter's type do not implement a toString() method,
it will use the type's structure name instead.
[]anytype content:
@public func read() stringReads the next value inputed in the configurated input stream and returns it as a string.
returns string: