Module:Sandbox/FunPika/Test

Revision as of 19:18, 19 December 2013 by imported>FunPika (...Don't bother with the last argument in formatDate (finishing last summary).)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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