Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    package Tie::Hash::Test;
    ...
    tie my %hash, 'Tie::Hash::Test', 'one', 'two', 'three';
    
    print join(':', keys %hash), "\n";
    
  2. or download this
    one:three:two
    
  3. or download this
    #!/usr/bin/perl -w
    
    package Tie::Hash::Test;
    ...
    my %hash : Test('one', 'two', 'three');
    
    print join(':', keys %hash), "\n";
    
  4. or download this
    ARRAY(0x80f551c)