bug-gawk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-gawk] pretty-print eats parentheses (2)


From: Hermann Peifer
Subject: [bug-gawk] pretty-print eats parentheses (2)
Date: Sun, 02 Nov 2014 14:32:06 +0100
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:24.0) Gecko/20100101 Thunderbird/24.6.0

Hi again,

Below is what I get with latest gawk from git master branch.

Hermann

$ awk    'BEGIN{print 1 / (10 * 10) }'
0.01

$ awk -o 'BEGIN{print 1 / (10 * 10) }' && awk -f awkprof.out
1

$ cat awkprof.out
BEGIN {
        print 1 / 10 * 10
}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]