Help for this page

Select Code to Download


  1. or download this
    sub new {
       my $self = shift;
       register( $self );
    
  2. or download this
    sub new {
       my $class = shift;
       my $self = register( $class );
    
  3. or download this
    $manager->{phone} = '555-1313';
    
    # {{what is the behavior of this??}}
    
  4. or download this
    sub new {
       my $class = shift;
       my $self = register( {}, $class );  # register does the bless, too
    
  5. or download this
    public   birthday => my %birthday, { set_hook =>; \&_set_birthday };
    
  6. or download this
    sub _get_birthday {
        strftime '%m/%d/%Y', localtime( $_ ); # but NOT just localtime()
    }