Module:Bananas

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
Category:Pages using the JsonConfig extension