Jump to content

Module:Sandbox/BigGreenCahuna

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by BigGreenCahuna (talk | contribs) at 05:03, 11 August 2014 (Created page with 'local p = {} function p.hello( frame ) local args=frame.args local Message = "Minions love bananas!" if args[1] == "1" then Message = "Cahuna" e...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local p = {}
 
function p.hello( frame )
	local args=frame.args
	local Message = "Minions love bananas!"
 
	if args[1] == "1"
	then 
		Message = "Cahuna"  
    else  
		Message = args[1]
	end
    return '<div>Bob</div>'   
end
 
return p