imported>FunPika
...Don't bother with the last argument in formatDate (finishing last summary).
 
(No difference)

Latest revision as of 19:18, 19 December 2013

Documentation for this module may be created at Module:Sandbox/FunPika/Test/doc

local p = {}
 
function p.hello( frame )
	local lang = mw.language.getContentLanguage()
	local date = lang:formatDate( 'U', frame.args[1])
	return "Hello, world!\n\n" .. date
end

return p