in reply to Operator precedence of unary plus (Bug or Feature)
#!/usr/bin/perl -l use strict; use warnings; print my $q = 1; print $q + +(4*5); print $q+4*5; print $q+ 4*5; [download]