Acme-Hello
view release on metacpan or search on metacpan
NAME
Acme::Hello - Print a greeting message
VERSION
This document describes version 0.04 of Acme::Hello.
SYNOPSIS
use Acme::Hello; # exports hello() by default
hello(); # procedure call interface
my $obj = Acme::Hello->new;
$obj->hello; # object-oriented interface
CC0 1.0 Universal
To the extent possible under law, åé³³ has waived all copyright and
related or neighboring rights to Acme-Hello.
This work is published from Taiwan.
lib/Acme/Hello.pm view on Meta::CPAN
=head1 NAME
Acme::Hello - Print a greeting message
=head1 VERSION
This document describes version 0.04 of B<Acme::Hello>.
=head1 SYNOPSIS
use Acme::Hello; # exports hello() by default
hello(); # procedure call interface
my $obj = Acme::Hello->new;
$obj->hello; # object-oriented interface
=cut
sub new {
my ($class, %args) = @_;
$class = ref($class) if (ref $class);
( run in 0.377 second using v1.01-cache-2.11-cpan-0a6323c29d9 )