Print

#import Builtin:Print;

A builtin module for printing things to the terminal

Functions


print(*char)

print :: (s : exact *char, ...) 

A function for printing a character array to the terminal

Arguments

s
exact *char
The *char to print.

printl(*char)

printl :: (s : exact *char, ...) 

A function for printing a character array to the terminal with a newline

Arguments

s
exact *char
The character array to print.

newline()

newline :: () 

A function for printing a newline to the terminal

print(int)

print :: (n : int64) 

A function for printing an int to the terminal, converted to a string

Arguments

n
int64
The integer to print.

printl(int)

printl :: (n : int64) 

A function for printing an int to the terminal, converted to a string, with a newline

Arguments

n
int64
The integer to print.