Console Summary Provides input and output functions for the system or browser console. Description System.Console provides methods for reading from standard input, writing to standard output, and accessing the standard error stream for the system or browser console. This class cannot be instantiated. All methods are static. Examples Printing to Standard Output 123import System; Console.log("Hello World!"); Methods errorWrites a line to the standard error stream. logWrites a line to standard output. traceWrites a line to standard output, with the source location printed. Share HTML | BBCode | Direct Link