Files
ground-rewrite/src/Program/execute.c

12 lines
258 B
C
Raw Normal View History

2026-06-13 19:45:36 +10:00
#include "../../include/ground.h"
void _GroundProgramExecute(GroundProgram* program, GroundState* state) {
2026-06-15 20:27:50 +10:00
// TODO:
// - Preprocess functions
// - Preprocess structs
// - Add them to state
Ground.Internal.run(program, state);
2026-06-13 19:45:36 +10:00
}