1234567891011121314151617181920212223242526
package test;@EXPORT = qw(new);sub new{ my $self = {}; bless $self; return $self;}sub test{ $self->test2("Hallo Welt");}sub test2{print "\n";my $i = 0; foreach(@_) { print "$i : $_\n"; $i++; }}
QuoteCan't call method "test2" on an undefined value at test.pm line 13.