Jump to content

Module:Sandbox/Cyborg Coder/Dates

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Cyborg Coder (talk | contribs) at 20:33, 29 November 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--Cyborg Coder Google Code-in, Lua Task 7 - Date formatting
local p = {}

function p.date( frame )
	dtext = frame.args.text
	dformat = frame.args.format or default
	
    return dtext
end

return p