Happy Early Access Launch! Please bear with us: We're doing our best to get the site updated. If we currently don't have what you're looking for, try checking our sister site, beastieball.info.

If you're looking to contribute to the site, we're happy to have you! Check out Beastiepedia:To Do List to see what needs done.

Find us in the Wishes Unlimited Discord in the "Beastiepedia: The Beastieball Wiki" thread in the Forums!

Module:HelperFunctions

From Beastiepedia: The Beastieball Wiki
Revision as of 23:33, 19 November 2024 by FractalDiane (talk | contribs) (Created page with "-- Module for various useful helper functions local p = {} function p.sum(...) local result = 0 for i,arg in ipairs(arg) do result = result + arg end return result end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

-- Module for various useful helper functions
local p = {}

function p.sum(...)
    local result = 0
    for i,arg in ipairs(arg) do
        result = result + arg
    end

    return result
end

return p