in reply to Re^2: Creating packages on the fly
in thread Creating packages on the fly

you're right, Jouke::Foo->whatever_method() isn't covered in my example.

Here is one that do:

sub UNIVERSAL::AUTOLOAD { print STDERR "[[@_]]"; } package main; Jouke::Foo->whatever_method();
outputs
D:\TESTS\tperl>perl -w autocr.pl [[Jouke::Foo]]