Module:Sandbox/AndyRussG

Source: Wikipedia, the free encyclopedia.
local p = {};

p.hello = function( frame )
	local Date = require('Module:Date')._Date
    local str1 = "I'm a doggy ogg, oggy ogg ogg doggy ogg, on "
    local str2 = Date(tonumber(frame.args[1]), 7, 31):text()
	return str1 .. str2
end

return p