local function read(value: T | () -> T): T return if type(value) == "function" then value() else value end return read