jecs/test/ecr.luau
2025-11-22 16:26:13 +01:00

11 lines
171 B
Text
Executable file

local function component()
local id = 1
local v
local function instance()
return id, v
end
return function(value)
v = value
return instance
end
end