Help for this page
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.
#!/usr/local/bin/perl -w use strict; ... eval $code; foo();
% foo.pl in foo