Acme-String-Trim
view release on metacpan or search on metacpan
lib/Acme/String/Trim.pm view on Meta::CPAN
{
$Acme::String::Trim::VERSION = '0.003';
}
# ABSTRACT: Acme::String::Trim - Module to experiment with 'dist-zilla', github and cpan
sub new {
my $class = shift;
$class = ref $class if ref $class;
return bless { _string => shift, }, $class;
}
sub string {
my ( $self, $string ) = @_;
$self->{_string} = $string if defined $string;
return $self->{_string};
}
( run in 1.954 second using v1.01-cache-2.11-cpan-de7293f3b23 )