Module:Test: Difference between revisions

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


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

Latest revision as of 19:23, 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.args[1]
    
    return var
end

return p