Help for this page

Select Code to Download


  1. or download this
    #!usr/bin/perl
    
    ...
    
    say $undump->{'testing'}->{'link'} // (die "'link' not found!");
    say $undump->{'testing'}->{'bandwidth'} // (die "'bandwidth not found!
    +");
    
  2. or download this
    #!usr/bin/perl
    
    ...
    
    say $hash->{'testing'}->{'link'} // (die "'link' not found!");
    say $hash->{'testing'}->{'bandwidth'} // (die "'bandwidth not found!")
    +;