Module:Test: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
No edit summary
Line 19: Line 19:
     table.insert(percentages, number * 1.30)
     table.insert(percentages, number * 1.30)
      
      
     -- Format the result as a string
     -- Format the result as a table
     local resultString = table.concat(percentages, ", ")
     local resultTable = "{| class=\"wikitable\"\n"
    resultTable = resultTable .. "! Original !! +10% !! +20% !! +30%\n|-\n"
    resultTable = resultTable .. "| " .. number .. " || " .. percentages[2] .. " || " .. percentages[3] .. " || " .. percentages[4] .. "\n|}"
      
      
     return resultString
     return resultTable
end
end


-- Export the module
-- Export the module
return Test
return Test

Revision as of 22:46, 3 April 2024

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

-- This is a Lua module for MediaWiki
-- It provides functionality to calculate percentages of a number

-- Create a table to hold the functions
local Test = {}

-- Function to calculate percentages
function Test.calculatePercentages(frame)
    local args = frame.args
    local number = tonumber(args[1]) or 0 -- Extract the number from the args
    local percentages = {}
    -- Original number
    table.insert(percentages, number)
    -- 10% increase
    table.insert(percentages, number * 1.10)
    -- 20% increase
    table.insert(percentages, number * 1.20)
    -- 30% increase
    table.insert(percentages, number * 1.30)
    
    -- Format the result as a table
    local resultTable = "{| class=\"wikitable\"\n"
    resultTable = resultTable .. "! Original !! +10% !! +20% !! +30%\n|-\n"
    resultTable = resultTable .. "| " .. number .. " || " .. percentages[2] .. " || " .. percentages[3] .. " || " .. percentages[4] .. "\n|}"
    
    return resultTable
end

-- Export the module
return Test