On 5/31/05, david d zuhn <[EMAIL PROTECTED]> wrote:
> Running pugs r4158, I find that (some, at least) subroutine calls
> only work with no whitespace between the sub name and the arguments.
> 
> $v  = numcmp (1,2);  # fails with
> 
> I don't see anywhere in the canon that no whitespace is allowed
> between the function name and the opening paren of the arguments.
Synopsis 2:
Whitespace is not allowed before the parens, but there is a
corresponding .() operator, which allows you to insert optional
whitespace before the dot.

$v  = numcmp .(1,2); # should pass

Cheers,
Carl

Reply via email to