diff options
| author | Abigail <abigail@abigail.be> | 2021-04-08 20:40:37 +0200 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2021-04-08 20:40:37 +0200 |
| commit | 6a593c51919ce50284673882f2b301bfde57d020 (patch) | |
| tree | a5f81312dcf36edeefbdbab7bbf2f4ca41479122 | |
| parent | 189236de703a94cf94663b83dea35c69fd4c0b84 (diff) | |
| download | perlweeklychallenge-club-6a593c51919ce50284673882f2b301bfde57d020.tar.gz perlweeklychallenge-club-6a593c51919ce50284673882f2b301bfde57d020.tar.bz2 perlweeklychallenge-club-6a593c51919ce50284673882f2b301bfde57d020.zip | |
Remark about AUTOLOAD
| -rw-r--r-- | challenge-107/abigail/perl/ch-2.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/challenge-107/abigail/perl/ch-2.pl b/challenge-107/abigail/perl/ch-2.pl index a3194ba7de..bc74d27e4c 100644 --- a/challenge-107/abigail/perl/ch-2.pl +++ b/challenge-107/abigail/perl/ch-2.pl @@ -57,3 +57,10 @@ foreach my $symbol (keys %$symbol_table) { # One piece of madness is enough. # say "BEGIN" if $$symbol_table {BEGIN}; + +# +# Note that if the module contains an AUTOLOAD method, one could argue +# the module contains any possible method. We decide to not do that. +# + +__END__ |
