이 모듈에 대한 설명문서는 모듈:Random/설명문서에서 만들 수 있습니다
local p = {}
function p.random(frame)
math.randomseed(os.time())
-- 매번 다른 난수 입력 및 출력을 위한 randomseed
local count = 0
for k,v in pairs(frame.args) do
count = count + 1
end
v = math.random(count)
return frame.args[v]
end
return p