Difference between revisions of "Module:Sandbox"

From Yugipedia
Jump to: navigation, search
(Test with frame.)
(Return the whole frame.)
Line 7: Line 7:
 
end
 
end
  
return doStuff( mw.getCurrentFrame():getTitle() )
+
return doStuff( mw.getCurrentFrame() )

Revision as of 13:06, 9 January 2020

------------------------
--  Sandbox module:
--  For testing purposes
------------------------
local function doStuff( title )
  return title
end

return doStuff( mw.getCurrentFrame() )