Perl Programming/Keywords/AUTOLOAD

Previous: atan2 Keywords Next: BEGIN

The AUTOLOAD keyword edit

AUTOLOAD 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 edit

sub AUTOLOAD {
  my $callit = $AUTOLOAD;
  []
  system($callit, @_);
}
Previous: atan2 Keywords Next: BEGIN