Module:Sandbox/BigGreenCahuna

This is an old revision of this page, as edited by BigGreenCahuna (talk | contribs) at 05:15, 11 August 2014. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}
 
function p.hello( frame )
	local args=frame.args
	
	output =  "Bob"
	local testcheck = 0
	
    -- check  1
	if args[1] == "1" 	then 
		Message = "Test1 "  
    else  
		Message = args[1]
	end
	
	-- check  2
	if args[2] == "5" 	then 
		output = output.."Test2 "  
    else  
		output = output..args[2]
	end	
    return output   
end  
 
return p