Module:Lua

From RPCS3 Wiki

This module is a simple Hello World function used to check if Lua is correctly working on the Wiki.


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