Module:Primes in edo fs: Difference between revisions
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)..." |
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 | ||
]] | ]] | ||
local function edoprox(edo, primes, title, prec, fse_arg) | local function edoprox(edo, primes, title, prec, fse_arg) | ||