Files
cground/src/compiler.h

6 lines
208 B
C
Raw Normal View History

#include "types.h"
2026-01-21 11:38:37 +11:00
#include "interpreter.h"
char* compileGroundProgram(GroundProgram* program);
2026-01-21 11:38:37 +11:00
[[noreturn]] void runtimeError(GroundRuntimeError error, char* what, GroundInstruction* where, int whereLine);