Jump to content

Module:FlexGallery: Difference between revisions

From Climbopedia
proof of concept
 
No edit summary
Line 1: Line 1:
local p = {}
local p = {}
local a = {}


p.hi = function(frame)
p.hi = function(frame)
return "hello"
    for i in frame.args do
        a = a + i
    end
return a
end
end


return p
return p

Revision as of 19:30, 20 August 2025

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

local p = {}
local a = {}

p.hi = function(frame)
    for i in frame.args do
        a = a + i
    end
	return a
end

return p