Jump to content

Module:Sandbox

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by BigGreenCahuna (talk | contribs) at 04:58, 11 August 2014. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

-- Placeholder only! Do not add code.
-- Reviving the evil Banana test
local p = {}
 
function p.hello( frame )
	local args=frame.args
	local Message = "Minions love bananas!"

	if args[1] == "1"
	then 
		Message = "Bill"  
    else  
		Message = args[1]
	end
    return '<div>Bob</div>'   
end
 
return p