Difference between revisions of "Module:TierTable"

From The Perfect Tower II
Jump to navigation Jump to search
m (Liveside moved page Template:DataRow to Module:Tier Table: Reimplemented with a module)
m (First Lua test)
Line 1: Line 1:
{{#if: {{{id1|}}} | {{{id1}}} | text1}}
+
local p = {}
<noinclude>
+
 
<templatedata>
+
function p.main(frame)
{
+
    return "Hello from Lua!"
"params": {},
+
end
"format": "block"
+
 
}
+
return p
</templatedata>
 
</noinclude>
 

Revision as of 10:40, 9 January 2026

local p = {}

function p.main(frame)

   return "Hello from Lua!"

end

return p