코드보관소/lua
[lua] 함수를 실행하는 함수
위치결정
2022. 3. 22. 21:02
반응형
function start(func, ...)
func(...)
end
start(print, 'hello, world!')
-- 'hello, world!'
반응형