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 = &#39;0.01&#39;;

=head1 SYNOPSIS

This module doesn&#39;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-&gt;new&#40;&#41;;

    $foo-&gt;set&#40; 3 &#41;;

    my $bar = $foo-&gt;get&#40;&#41;;

=head1 EXPORT

This module is OO, so it doesn&#39;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">&lt; &lt; Previous</a> |
    <a accesskey='i' href="index.html">Index</a> |
    <a accesskey='n' href="slide14.html">Next &gt;&gt;</a>
    </div>
</td>
<td align="right" valign="middle">
    Copyright &copy; 2005 Jos&eacute; 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 )