Acme-CreatingCPANModules
view release on metacpan or search on metacpan
slides/slide13.html view on Meta::CPAN
</td>
<td align="right" width="13%">
#13
</td>
</tr>
</table>
</div>
<!-- END top -->
<div id="content">
<div class="top_spacer"></div>
<h1>lib/Acme/CreatingCPANModules.pm</h1>
<pre class="formatter_pre">package Acme::CreatingCPANModules;
use warnings;
use strict;
=head1 NAME
Acme::CreatingCPANModules - Created during a talk in London
=head1 VERSION
Version 0.01
=cut
our $VERSION = '0.01';
=head1 SYNOPSIS
This module doesn't actually *do* anything...
It does have a new constructor, and a set and a get method, just so
you can do some tests.
use Acme::CreatingCPANModules;
my $foo = Acme::CreatingCPANModules->new();
$foo->set( 3 );
my $bar = $foo->get();
=head1 EXPORT
This module is OO, so it doesn't export anything...
=head1 FUNCTIONS
=head2 new
Creates a new Acme::CreatingCPANModules object.
=cut
sub new {
my $self = shift;
my $foo = shift;
bless \$foo, $self;
}
[...]
</pre>
</div>
<!-- BEGIN bottom -->
<div id="bottombar">
<table width="100%">
<tr>
<td align="left" valign="middle">
<div style="display:none">
<a accesskey='p' href="slide12.html">< < Previous</a> |
<a accesskey='i' href="index.html">Index</a> |
<a accesskey='n' href="slide14.html">Next >></a>
</div>
</td>
<td align="right" valign="middle">
Copyright © 2005 José Castro
</td>
</tr>
</table>
</div>
<div id="logo"></div>
<div class="spacer">
<a name="end"></a>
</div>
</body>
</html>
<!-- END slide -->
( run in 1.299 second using v1.01-cache-2.11-cpan-39bf76dae61 )