Perl Programming/Keywords/AUTOLOAD
The AUTOLOAD keyword
editAUTOLOAD is a keyword that is used to mark a subroutine for autoloading. This subroutine is called, if a subroutine that doesn't exist was called with exactly the same number of arguments.
Syntax
edit sub AUTOLOAD BLOCK
Examples
editsub AUTOLOAD {
my $callit = $AUTOLOAD;
[…]
system($callit, @_);
}