aboutsummaryrefslogtreecommitdiffstats
path: root/test/numrange.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/numrange.awk')
-rw-r--r--test/numrange.awk5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/numrange.awk b/test/numrange.awk
new file mode 100644
index 00000000..3ad2cab5
--- /dev/null
+++ b/test/numrange.awk
@@ -0,0 +1,5 @@
+BEGIN {
+ n = split("-1.2e+931 1.2e+931", a)
+ for (i=1; i<=n; ++i)
+ print a[i], +a[i]
+}