Call functions

This commit is contained in:
2025-12-06 14:35:13 +11:00
parent 9553934db5
commit 166a547a74
5 changed files with 74 additions and 11 deletions

View File

@@ -51,6 +51,12 @@ GroundValue createFunctionGroundValue(GroundFunction* in) {
return gv;
}
GroundValue createNoneGroundValue() {
GroundValue gv;
gv.type = NONE;
return gv;
}
GroundValue copyGroundValue(const GroundValue* gv) {
GroundValue newGv;
newGv.type = gv->type;