[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
perl
/
vendor
/
lib
/
Perl
/
Tidy
/
[
Home
]
File: DevNull.pm
##################################################################### # # The Perl::Tidy::DevNull class supplies a dummy print method # ##################################################################### package Perl::Tidy::DevNull; use strict; use warnings; our $VERSION = '20210111'; sub new { my $self = shift; return bless {}, $self } sub print { return } sub close { return } 1;