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

提供:WikiWiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
3行目: 3行目:
function test(frame)
function test(frame)
local a = 2
local a = 2
c = a and 4
local c = a and 4
return c
return c
end
end


return p
return p

2年12月7日 (W) 21:00時点における版

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

local p={}

function test(frame)
	local a = 2
	local c = a and 4
	return c
end

return p