A program that uses AUTOLOAD. : Code Block « Language Basics « Perl
- Perl
- Language Basics
- Code Block
A program that uses AUTOLOAD.
#!/usr/local/bin/perl
¬here("hi", 46);
AUTOLOAD {
print("subroutine $AUTOLOAD not found\n");
print("arguments passed: @_\n");
}
Related examples in the same category