There are no
reviewed versions of this page, so it may
not have been checked for adherence to standards.
Documentation for this module may be created at Module:Ahoj2/doc
local p = {}
function p.bonjour (frame)
local b = ""
for i = 1, frame.args[1] do
b = "Bonjour vous ! " .. b
end
return b
end
return p