aboutsummaryrefslogtreecommitdiffstats
path: root/test/profile6.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-10-30 21:39:54 +0200
committerArnold D. Robbins <arnold@skeeve.com>2014-10-30 21:39:54 +0200
commite8f34d6db9d1c4343ecfacd94cd5d0441ffacee4 (patch)
tree0ef461f0882d6851fdee9e15b75257e614af1856 /test/profile6.awk
parentb75a0f281598a38f64a5b2bc3da40ff2cdac20ca (diff)
parentc2cda8d3736b59738f579fce748e94ca109ccc58 (diff)
downloadegawk-e8f34d6db9d1c4343ecfacd94cd5d0441ffacee4.tar.gz
egawk-e8f34d6db9d1c4343ecfacd94cd5d0441ffacee4.tar.bz2
egawk-e8f34d6db9d1c4343ecfacd94cd5d0441ffacee4.zip
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'test/profile6.awk')
-rw-r--r--test/profile6.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/profile6.awk b/test/profile6.awk
new file mode 100644
index 00000000..754f8ae6
--- /dev/null
+++ b/test/profile6.awk
@@ -0,0 +1,7 @@
+BEGIN {
+ x = 3
+ print -(-x)
+ Q = "|"
+ print -3 Q (-4)
+ print -3 Q (-4) (-5)
+}