io

printdec

Parameters: cell value

Prints the given value as decimal to stdout

printhex

Parameters: cell value

Prints the given value as hexadecimal to stdout

printstr

Parameters: Array* str

Prints the given string to stdout

new_line

Parameters:

Prints a new line to stdout

printf

Parameters: ..., Array* fmt

Prints a formatted string (fmt) to stdout, format values are in reverse order of how they are written

Formats:

  • %s - String (Array*)
  • %d - Decimal (cell)
  • %X - Hexadecimal (cell)