[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
xampp182
/
perl
/
vendor
/
lib
/
Module
/
[
Home
]
File: P5Z.pm
package Module::P5Z; use 5.006; use strict; use File::pushd (); use Archive::Tar (); use vars qw{$VERSION}; BEGIN { $VERSION = '1.19'; } ##################################################################### # Constructor sub read { my $class = shift; my $self = bless { @_ }, $class; # Apply defaults $self->{tempd} ||= File::pushd::tempd(); $self; } sub tempd { $_[0]->{tempd}; } 1;