aboutsummaryrefslogtreecommitdiffstats
path: root/test/concat5.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-01-15 21:21:31 +0200
committerArnold D. Robbins <arnold@skeeve.com>2017-01-15 21:21:31 +0200
commited310df632070db175d86e02fce3e4d2515d7066 (patch)
tree1fb087c0f6a1214a2ea9b45a41f4a1f3fe5f39ae /test/concat5.awk
parent50ff28c905e8bb7c79b45db1f3f18a4b3e485adc (diff)
parent0c3c1a2aa8318e0035f90fc3a5d30de470d949b3 (diff)
downloadegawk-ed310df632070db175d86e02fce3e4d2515d7066.tar.gz
egawk-ed310df632070db175d86e02fce3e4d2515d7066.tar.bz2
egawk-ed310df632070db175d86e02fce3e4d2515d7066.zip
Merge branch 'master' into feature/api-mpfr
Diffstat (limited to 'test/concat5.awk')
-rw-r--r--test/concat5.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/concat5.awk b/test/concat5.awk
new file mode 100644
index 00000000..6bfbb856
--- /dev/null
+++ b/test/concat5.awk
@@ -0,0 +1,7 @@
+BEGIN {
+ OFMT = "%.8g"
+ x = 1
+ x += .1
+ x = (x "a")
+ print x
+}