Module:Sandbox/pietrasagh/sometest

From English Wikipedia @ Freddythechick
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