Module:Sandbox

Katty von Keksburg讨论 | 贡献2024年5月13日 (一) 20:45的版本 (创建页面,内容为“--[[ Please do not edit this page. This page serves as a root for the sandbox. The following below is some starter code that you may use to get started with module writing and testing. Please feel free to take this to get started on your module. Remember to remove this top notice when copying and pasting from here to your module sandbox. ]]-- local p = {} p.main = function(frame) local args = frame.args local out = '' -- some code here return out end r…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

可在Module:Sandbox/doc创建此模块的帮助文档

--[[
Please do not edit this page. This page serves as a root for the sandbox.

The following below is some starter code that you may use to get started with module writing and testing. Please feel free to take this to get started on your module.

Remember to remove this top notice when copying and pasting from here to your module sandbox.
]]--

local p = {}
p.main = function(frame)
	local args = frame.args
	local out = ''
	-- some code here
	
	return out
end
return p