aboutsummaryrefslogtreecommitdiffstats
path: root/test/concat5.awk
diff options
context:
space:
mode:
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
+}