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

提供:WikiWiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
1行目: 1行目:
local p = {}
local p = {}
function p.hundred(frame)
function p.hundred(frame)
function q(f)
for i=1,100 do mw.log(f) end
end
     if frame.args[2] == true then
     if frame.args[2] == true then
         if string.find(frame.args[1],frame.args[2]) == true then
         if string.find(frame.args[1],frame.args[2]) == true then
             a,b = string.find(frame.args[1],frame.args[2])
             a,b = string.find(frame.args[1],frame.args[2])
             m = string.char(string.byte(frame.args[1],a,b))
             m = string.char(string.byte(frame.args[1],a,b))
             return a,b
             return q(f)
         end
         end
     end
     end
end
end
return p
return p

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

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

local p = {}
function p.hundred(frame)
	function q(f)
		for i=1,100 do mw.log(f) end
	end
    if frame.args[2] == true then
        if string.find(frame.args[1],frame.args[2]) == true then
            a,b = string.find(frame.args[1],frame.args[2])
            m = string.char(string.byte(frame.args[1],a,b))
            return q(f)
        end
    end
end
return p