Acme-MyFirstModule-MALLEN

 view release on metacpan or  search on metacpan

lib/Acme/MyFirstModule/MALLEN.pm  view on Meta::CPAN


use strict;
use warnings;
package Acme::MyFirstModule::MALLEN;

# ABSTRACT: turns baubles into trinkets

sub new {
    my $class = shift;

    my $self = bless {}, $class;

    return $self;
}

sub ping {
    my $self = shift;

    say "You have to use perl 5.20 to run this.";

    1;



( run in 0.345 second using v1.01-cache-2.11-cpan-de7293f3b23 )