aboutsummaryrefslogtreecommitdiffstats
path: root/test/numrange.awk
blob: 4cb62602b019552db6407dba43f1e335cf2581ba (plain)
1
2
3
4
5
BEGIN {
    n = split("-1.2e+931 1.2e+931", a)
    for (i = 1; i <= n; ++i)
        print a[i], +a[i], -a[i]
}