Help for this page

Select Code to Download


  1. or download this
    my $self = {};
    
    ...
        bless $self, $class;
        return $self;
    }
    
  2. or download this
    sub public_method {
        my ($self,$args) = @_;
    ...
    sub _do_private_stuff {
        print $self->{foo};
    }
    
  3. or download this
    sub public_method {
        my ($self,$args) = @_;
    ...
        my $self = shift;
        print $self->{foo};
    }
    
  4. or download this
    //avert your eyes - Java code ahead
    class Ball {
    ...
            this.color = c;
        }
    }