Jump to content

Module:Sandbox/Jackmcbarn

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jackmcbarn (talk | contribs) at 20:11, 30 November 2014 (test an error). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

local function foo()
	error('This is an error')
end

function p.main(frame)
	foo()
end

return p