Files
ground-rewrite/src/New/Value/Function.c

9 lines
211 B
C
Raw Normal View History

2026-06-13 19:45:36 +10:00
#include "../../../include/ground.h"
GroundValue _GroundNewValueFunction(GroundFunction in) {
return (GroundValue) {
.as.Function = in,
.type = Ground.New.Type(GroundType_Function)
};
}