> And package::subroutine should go the way of package`subroutine as > package.subroutine will work and become the preferred method :), no?
Err...no. They're still not the same thing in Perl 6: package::subroutine(@args) --> package::subroutine(@args) package.subroutine(@args) --> package::subroutine('package',@args) And you'll still need the package separator version to take the address of the subroutine. Damian