aboutsummaryrefslogtreecommitdiffstats
path: root/test/commas.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/commas.awk')
-rw-r--r--test/commas.awk4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/commas.awk b/test/commas.awk
new file mode 100644
index 00000000..1013b9cb
--- /dev/null
+++ b/test/commas.awk
@@ -0,0 +1,4 @@
+BEGIN {
+ printf("%'d\n",123456789)
+ printf("%'f\n",123456789)
+}