「モジュール:選り抜き記事」の版間の差分

提供:WikiWiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
1行目: 1行目:
local p={}
local p={}
local a
function p.randomnum(flame)
function randomnum(a)
local num = flame.args[1]
local a = mw.getCurrentFrame()
math.randomseed(os.time())
local b = math.random(a)
return math.random(num)
return b
end
end
return p
return p
-- なぜ! どうして! お願い、ちゃんと動いてよ!
--[[
  これはメインページにおける「選り抜き記事」のために作成されたモジュールです。
  現在はランダムな数字を返すだけなので、
  「モジュール:選り抜き記事」というページは適切でないかもしれませんが、
  仕様変更の可能性があるためこのようにしました。
]]

2年1月7日 (I) 20:08時点における版

このモジュールについての説明文ページを モジュール:選り抜き記事/doc に作成できます

local p={}
function p.randomnum(flame)
	local num = flame.args[1]
	math.randomseed(os.time())
	return math.random(num)
end
return p