Module:Lua: Difference between revisions

From RPCS3 Wiki
(Test)
 
m (Protected "Module:Lua" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) [cascading])
 
(No difference)

Latest revision as of 19:04, 17 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