Module:CurrentDate

From PKC
Jump to navigation Jump to search

Documentation for this module may be created at Module:CurrentDate/doc

local p = {}


function p.getDate(frame)
	month = frame.args[1]
	day = frame.args[2]
	year = frame.args[3]
	
	return month .. " " .. day .. ", " .. year
end

return p