Difference between revisions of "Module:Languages"

From Team Fortress Wiki
Jump to: navigation, search
(There's currently a bug with Template:Languages where it doesn't work on pages like Team_Fortress_Wiki:April_Fools'_Day/2012/Crocketeer's_Cloak. I'm going to rewrite it in lua, and I hope it'll work for the sidebar as well.)
 
Line 1: Line 1:
 +
local p = {}
  
 +
function p.hello( frame )
 +
return "Hello, world!"
 +
end
 +
 +
return p

Revision as of 18:45, 10 February 2016

Documentation for this module may be created at Module:Languages/doc

local p = {}

function p.hello( frame )
		return "Hello, world!"
end

return p