Module:Primes in edo fs: Difference between revisions

Xenwolf (talk | contribs)
Created page with "local p = {} -- https://rosettacode.org/wiki/Greatest_common_divisor#Lua local function gcd(a, b) while b ~= 0 do a, b = b, a % b end return math.abs(a)..."
 
Xenwolf (talk | contribs)
m (... was already done)
Line 46: Line 46:
prec: number of decimals (for abs errors)
prec: number of decimals (for abs errors)
fse_arg: should fifthspans be included as well
fse_arg: should fifthspans be included as well
@todo: on negative numbers replace hyphens by minus signs
]]
]]
local function edoprox(edo, primes, title, prec, fse_arg)
local function edoprox(edo, primes, title, prec, fse_arg)