package Learning; use strict; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); require Exporter; require AutoLoader; @ISA = qw(Exporter AutoLoader); @EXPORT = qw(); $VERSION = '0.01'; sub new { my $self=shift; my $class=ref($self) || $self; return bless {}, $class; } sub return_two_values { my ($val1, $val2) = @_; return ($val1, $val2); } 1;