level 1
---[[ 使用5个随机数组合成随即字符串
math.randomseed(os.time());
local t1 = math.random(0,9)
local t2 = math.random(0,9)
local t3 = math.random(0,9)
local t4 = math.random(0,9)
local t5 = math.random(0,9)
str = tostring(t1) .. tostring(t2) .. tostring(t3) .. tostring(t4) .. tostring(t5)
print(str)
--]]
2010年06月17日 03点06分