- or download this
package Foo::Bar ;
.....
our $VERSION = "0.00" ;
.....
- or download this
my $obj = new Foo::Bar (...) ;
- or download this
package Foo::Bar ;
...
sub new { return bless [], shift ; } ;
1 ;
- or download this
package Foo ;
...
} ;
1 ;
- or download this
use strict ; use warnings ;
...
my $obj = new Foo::Bar ;
print $obj->version(), "\n" ;
- or download this
1.01