diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-01-15 21:22:23 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-01-15 21:22:23 +0200 |
commit | b16dd7ad0af13d337fdcb36d9d59acf303804fcb (patch) | |
tree | 27a9a145642203b9d0dd972bf672b1dbd122563c /test/concat5.awk | |
parent | 9c30bfea5a9492ea97dc2c4c75ba1031d56b32b9 (diff) | |
parent | 0c3c1a2aa8318e0035f90fc3a5d30de470d949b3 (diff) | |
download | egawk-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.awk | 7 |
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 +} |