[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
perl
/
vendor
/
lib
/
IO
/
All
/
[
Home
]
File: Temp.pm
use strict; use warnings; package IO::All::Temp; use IO::All::File -base; sub temp { my $self = shift; bless $self, __PACKAGE__; my $temp_file = IO::File::new_tmpfile() or $self->throw("Can't create temporary file"); $self->io_handle($temp_file); $self->_error_check; $self->autoclose(0); $self->is_open(1); return $self; } 1;