Module:Test: Difference between revisions

From CIWA
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 2: Line 2:


function p.hello( frame )
function p.hello( frame )
     local var = frame:getParent().args[0]
     local var = frame:getParent().args[1]
      
      
     return var
     return var

Revision as of 19:19, 2 June 2026

Documentation for this module may be created at Module:Test/doc

Script error: Lua error: Internal error: The interpreter exited with status 127.

local p = {}

function p.hello( frame )
    local var = frame:getParent().args[1]
    
    return var
end

return p