Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Test

From North Forge
Revision as of 21:28, 2024 May 29 by Ttenbergen (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This is just a module to test Scribunto/loa


local p = {}

function p.getAuthor( frame )
	--if frame.args[1] == nil 
	
	return p.testParameters(frame.args[1])
	
end

function p.testParameters( myParameter )
	local myOutput
	if myParameter == nil then
		myOutput = "it was empty"
	else
        myOutput = "parameter was:"..myParameter
	end
    mw.log("logged stuff") -- send things to debug log
	return myOutput
end 

return p