This can be surprising in things like
"@" x 75 ~ $zap
Which has to be written as
("@" x 75) ~ $zap
in order to make sense.
Was this intentional? What is the rationale?
Juerd
--
http://convolution.nl/maak_juerd_blij.html
http://convolution.nl/make_juerd_happy.html
http://convolution.nl/gajigu_juerd_n.html
> According to S03, ~ is tighter than x, while in Perl 5, . was looser
> than x.
No. According to S03, *unary* ~ is tighter than x. *Binary* ~ is looser:
> symbolic unary ! + - ~ ? * ** +^ ~^ ?^ \
> multiplicative * / % x xx +& +<< +>> ~& ~<< ~>>
> additive + - ~ +| +^ ~| ~^
Damian
Oh. I'm ashamed to admit I hadn't looked at the first column. Sorry.