Pereiti prie turinio

Module:Sandbox

Puslapis iš Vikipedijos, laisvosios enciklopedijos.
15:54, 29 spalio 2024 versija, sukurta Zygimantus (aptarimas | indėlis) (kopijuota iš enwiki)
(skirt) ←Prieš tai buvusi versija | žiūrėti esamą versiją (skirt) | Kita versija → (skirt)

Documentation for this module may be created at 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