「モジュール:テスト」の版間の差分

提供:WikiWiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
2行目: 2行目:
function p.randomnum()
function p.randomnum()
math.randomseed(os.time())
math.randomseed(os.time())
return math.random(frame.args[1])
return math.random(frame.args.num)
end
end
return p
return p

2年1月8日 (K) 12:25時点における版

このモジュールについての説明文ページを モジュール:テスト/doc に作成できます

local p={}
function p.randomnum()
	math.randomseed(os.time())
	return math.random(frame.args.num)
end
return p