(root)/
gawk-5.2.2/
test/
numrange.awk
BEGIN {
    n = split("-1.2e+931 1.2e+931", a)
    for (i = 1; i <= n; ++i)
        print a[i], +a[i], -a[i]
}