Implement a basic VM that is capable of simple math. Signed-off-by: Daniel Henry <iamdanhenry@gmail.com>
11 lines
145 B
C
11 lines
145 B
C
#ifndef clox_common_h
|
|
#define clox_common_h
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#define DEBUG_TRACE_EXECUTION
|
|
|
|
#endif
|