Help for this page

Select Code to Download


  1. or download this
    sub new {
        my $pkg    = shift;
    ...
        bless $self, $pkg;
    }
    
  2. or download this
    sub new {
        my $pkg = shift;
    ...
    
        bless $self, $pkg;
    }
    
  3. or download this
    sub new {
        my $pkg = shift;
    ...
    
        bless $self, $pkg;
    }
    
  4. or download this
    sub eprint {
        my $self = shift;
    ...
            print "element: $show\n";
        }
    }
    
  5. or download this
    $self->{$key} = $$entry;           # anchor reference in dictionary
    $entry->eprint($key);              # just for debug purpose (WORKS)
    
  6. or download this
        # remeber: value of the hash-element with
        # key $k1 is an Entry object
    ...
          &message("\t$meaning\n");
        }
        $ref->eprint($k1); # no chance :-(