82 print( _environment, _message, 0, 0 );
Variable * variable_store_string(Environment *_environment, char *_destination, char *_value)
Store a string to a variable.
Variable * variable_temporary(Environment *_environment, VariableType _type, char *_meaning)
Define a temporary variable.
Variable * variable_store(Environment *_environment, char *_destination, unsigned int _value)
Store a direct value to a variable.
void error(Environment *_environment, char *_message)
Emit ASM code for ERROR.
void halt(Environment *_environment)
Emit ASM code for HALT.
void home(Environment *_environment)
Emit code for HOME.
void print(Environment *_environment, char *_value, int _new_line, int _raw)
Emit code for PRINT... instruction.
struct _Variable Variable
Structure of a single variable.
struct _Environment Environment
Structure of compilation environment.