Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Module Naming Dilemma

by xdg (Monsignor)
on Jan 04, 2005 at 23:41 UTC ( [id://419457]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Math::Random::OO qw( Uniform UniformInt Normal Bootstrap );
    
    ...
    $uni_int = UniformInt(1,6);
    $normal  = Normal(1,1);
    $boot    = Bootstrap( 2, 3, 3, 4, 4, 4, 5, 5, 5 );
    
  2. or download this
    sub import {
        my ($class, @symbols) = @_;
    ...
                eval "sub { return ${subclass}->new(\@_) }";
        }
    }
    
  3. or download this
    use Alias 'My::Long::Class::Name' => 'ShortForm';
    use Alias [ 'My::Long::Class::Name', @options ] => 'ShortForm';
    
  4. or download this
    use Nickname 'My::Long::Class::Name' => 'ShortForm';
    use Nickname [ 'My::Long::Class::Name', @options ] => 'ShortForm';
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://419457]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-19 19:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found