reality-engine/src/test.h

13 lines
260 B
C

#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