Difference between revisions of "Module:Sandbox"

From Yugipedia
Jump to: navigation, search
(Well, wrong way.)
(Test with frame.)
Line 7: Line 7:
 
end
 
end
  
return doStuff( '{{PAGENAME}}' )
+
return doStuff( mw.getCurrentFrame():getTitle() )

Revision as of 13:03, 9 January 2020

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

return doStuff( mw.getCurrentFrame():getTitle() )