Module:Lua: Difference between revisions

From RPCS3 Wiki
(Test)
(No difference)

Revision as of 00:05, 14 March 2024

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