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

Re^3: Things I Don't Use in Perl

by demerphq (Chancellor)
on Aug 24, 2005 at 16:59 UTC ( [id://486288]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Carp;
    sub name {
    ...
      }
      return $self->{name};
    }
    
  2. or download this
    sub set_name { 
        my $self = shift; 
    ...
        if (@_) { warn "Attempt to set value in get" }
        return $self->{name};
    }
    
  3. or download this
    my $val = $obj->set_name(@foo);
    
  4. or download this
    die "No arguments in set_name()" unless @_;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-03-29 11:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found