Module:DropsLineTest
Documentation for this module may be created at Module:DropsLineTest/doc
-- Define a function to generate output numbers based on the input
local function generateOutput(input)
local output = {}
-- Add the input number
table.insert(output, input)
-- Calculate and add percentages
table.insert(output, input * 0.1) -- 10%
table.insert(output, input * 0.2) -- 20%
table.insert(output, input * 0.3) -- 30%
table.insert(output, input * 0.4) -- 40%
table.insert(output, input * 0.5) -- 50%
return output
end