A program that uses AUTOLOAD.
#!/usr/local/bin/perl ¬here("hi", 46); AUTOLOAD { print("subroutine $AUTOLOAD not found\n"); print("arguments passed: @_\n"); }