Module:Sandbox/pietrasagh/sometest

Revision as of 04:57, 25 March 2020 by imported>Pietrasagh
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Sandbox/pietrasagh/sometest/doc

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