Mega Code Archive

 
Categories / Perl / Language Basics
 

A program that uses AUTOLOAD

#!/usr/local/bin/perl  &nothere("hi", 46);  AUTOLOAD {     print("subroutine $AUTOLOAD not found\n");     print("arguments passed: @_\n");  }