Perl6 RFC Librarian <[EMAIL PROTECTED]> writes:
> =head1 ABSTRACT
> 
> Currently, Perl 5 makes a distinction between routines called in the
> indirect object vs. function form:
> 
>    $r = new CGI;          # CGI->new
>    $r = new CGI (@args);  # CGI->new(@args)
>    $r = new(CGI  @args);  # mail::new(main::CGI(@args))
     $r = new(CGI  @args);  # main::new(main::CGI(@args))


Reply via email to