The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
package Test::Module 0.001; # TRIAL
# ABSTRACT: brief summary of what this module is used for
use Exporter 'import';
our (@EXPORT_OK) = ();
our (@EXPORT) = (@EXPORT_OK);
sub new {
my $pkg = shift;
bless {}, $pkg;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Test::Module - brief summary of what this module is used for
=head1 VERSION
version 0.001
=head1 SYNOPSIS
use Test::Module;
my $obj = new Test::Module;
print "Hello World\n" if $obj->isa('Test::Modules');
=head1 METHODS
=head2 new
Takes no arguments. Returns a blessed reference.
=head1 AUTHOR
Balaji Ramasubramanian <balaji.ramasubramanian@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2018 by Balaji Ramasubramanian.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut