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.

print(float)

print :: (x : float)

Prints a float to the terminal

printl(float)

printl :: (x : float)

Prints a float to the terminal with a newline

print(double)

print :: (x : double)

Prints a double to the terminal

printl(double)

printl :: (x : double)

Prints a double to the terminal with a newline