imported>Pietrasagh
No edit summary
 
(No difference)

Latest revision as of 04:57, 25 March 2020

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