Juerd wrote:
+C<.()> operator, which allows you to insert optional whitespace after the dot: - &foo .($arg1, $arg2); + &foo. ($arg1, $arg2);
Please reconsider.
We can't. The problem is that:
foo .bar
has to mean:
foo($_.bar)
So the only way to allow whitespace in dot operations is to put it after the
dot.
Damian
