|
#ifndef ZRE_TEST_H
|
|
#define ZRE_TEST_H
|
|
|
|
#include "opcodes.h"
|
|
|
|
bool test_hello_world_compile (VM *vm);
|
|
bool test_add_compile (VM *vm);
|
|
bool test_loop_compile (VM *vm);
|
|
bool test_add_function_compile(VM *vm);
|
|
bool test_recursive_function_compile(VM *vm);
|
|
|
|
#endif
|