Help for this page

Select Code to Download


  1. or download this
        When Perl tries to call an undefined function
        in a particular package and that function is
    ...
        same package called AUTOLOAD. If one exists,
        it's called with the same arguments as the
        original function would have had.
    
  2. or download this
        #!/usr/local/bin/perl -w
        use strict;
    ...
    
        eval $code;
        foo();
    
  3. or download this
        % foo.pl
        in foo