std/core/console▲toc

Standard output to the console.

.

effect consolestd/core/console/console: X

The console effect signifies that a function may write to the console.

fun show/print( x : a, ?show : (a) -> stringstd/core/types/string: V ) : consolestd/core/console/console: X ()

Print a value that has a show function.

fun show/println( x : a, ?show : (a) -> stringstd/core/types/string: V ) : consolestd/core/console/console: X ()

Print a value that has a show function, including a final newline character.

fun string/print( s : stringstd/core/types/string: V ) : consolestd/core/console/console: X ()

Print a string to the console.

fun string/println( s : stringstd/core/types/string: V ) : consolestd/core/console/console: X ()

Print a string to the console, including a final newline character.

private import std/core/typesstd/core/types, std/core/unsafestd/core/unsafe, std/core/hndstd/core/hnd, std/core/stringstd/core/string, std/core/showstd/core/show