Module:Sandbox/pietrasagh/sometest

From English Wikipedia @ Freddythechick

This is the current revision of this page, as edited by imported>Pietrasagh at 05:57, 25 March 2020. The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
local p = {}; 

p.hello = function( frame )     --Add a function to "my_object".  
    local str = "Hello World!"  --Declare a local variable and set it equal to
    mw.log(str)
    return str    --This tells us to quit this function and send the information in
end

return p