aboutsummaryrefslogtreecommitdiffstats
path: root/test/profile6.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-10-30 21:33:59 +0200
committerArnold D. Robbins <arnold@skeeve.com>2014-10-30 21:33:59 +0200
commitc2cda8d3736b59738f579fce748e94ca109ccc58 (patch)
tree87cd8b65028cdc2b553de69d5a2ebd5a4cb1a92e /test/profile6.awk
parente982e87ced45d48d23ffc86fa0b6cf6fabfbef8d (diff)
downloadegawk-c2cda8d3736b59738f579fce748e94ca109ccc58.tar.gz
egawk-c2cda8d3736b59738f579fce748e94ca109ccc58.tar.bz2
egawk-c2cda8d3736b59738f579fce748e94ca109ccc58.zip
Fixes in pretty-printer.
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)
+}