Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Python OO v Moose v Badger

by Anonymous Monk
on Feb 06, 2013 at 13:05 UTC ( [id://1017416]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    package OurClass;
    use Badger::Class
        base        => 'Badger::Base',
    ...
            }
        },
    ;;;;
    
  2. or download this
    package OurClass;
    use parent 'Badger::Base';
    ...
        my $self = shift;
        print $self->arg1, "\n", $self->arg2, "\n";
    }
    
  3. or download this
    $ wc OurClass.pm
     11  32 271 OurClass.pm
    
  4. or download this
     package OurClass;
    use Badger::Class
        base        => 'Badger::Base',
    ...
        my $self = shift;
        print $self->arg1, "\n", $self->arg2, "\n";
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-04-19 16:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found