Module:CurrentDate

From PKC
Revision as of 11:08, 9 February 2022 by Benkoo (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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