Stuff, also compiler is under construction

This commit is contained in:
2026-04-10 17:43:51 +10:00
parent c2d6e2fcad
commit 01d3c0ed98
5 changed files with 41 additions and 551 deletions

View File

@@ -152,8 +152,8 @@ void groundAddFieldToStruct(GroundStruct* gstruct, char* name, GroundValue field
addFieldToStruct(gstruct, name, field);
}
char* groundCompileProgram(GroundProgram* program) {
return compileGroundProgram(program);
void groundCompileProgram(GroundProgram* program) {
compileGroundProgram(program, "program.gexe");
}
GroundValue groundRunFunction(GroundFunction* function, size_t argc, ...) {