Jump to content

Module:Hello

From mediawiki.org
Revision as of 06:44, 2 January 2025 by Aquila Leite (talk | contribs) (Aquila Leite moved page Module:Bananas to Module:Hello: Misspelled title: hello)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Module documentation
In a template page you should write this:
{{#invoke:Hello|hello}}

This will output:
Hello, world!

local p = {} --p stands for package
 
function p.hello( frame )
    return "Hello, world!"
end
 
return p