Skip to content

.\io.axec

def print_char(value: char)

Print out some char

def println_char(value: char)

Print out some char with a newline

def print_str(value: string)

Print out some string

def println_str(value: string)

Print out some string with a newline

def print_f32(value: f32)

Print out some float with no newline

def println_f32(value: f32)

Print a float with newline

def println_f64(value: f64)

def print_f64(value: f64)

def println_i64(value: i64)

def print_i64(value: i64)

def print_i32(value: i32)

Print out some int with no newline

def println_i32(value: i32)

Print an int with newline

def print_bool(value: bool)

Print a boolean with no newline

def println_bool(value: bool)

Print a boolean with newline