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

10 lines
204 B
C
Raw Normal View History

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