aboutsummaryrefslogtreecommitdiffstats
path: root/test/concat5.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-01-15 21:22:23 +0200
committerArnold D. Robbins <arnold@skeeve.com>2017-01-15 21:22:23 +0200
commitb16dd7ad0af13d337fdcb36d9d59acf303804fcb (patch)
tree27a9a145642203b9d0dd972bf672b1dbd122563c /test/concat5.awk
parent9c30bfea5a9492ea97dc2c4c75ba1031d56b32b9 (diff)
parent0c3c1a2aa8318e0035f90fc3a5d30de470d949b3 (diff)
downloadegawk-b16dd7ad0af13d337fdcb36d9d59acf303804fcb.tar.gz
egawk-b16dd7ad0af13d337fdcb36d9d59acf303804fcb.tar.bz2
egawk-b16dd7ad0af13d337fdcb36d9d59acf303804fcb.zip
Merge branch 'master' into feature/fix-comments
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
+}