Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    my %d = %{$deref{DSAPrivateKey}};
    for (keys(%d)) {print "$_ : $d{$_}\n"} 
    __END__
    
  2. or download this
    #!/usr/bin/perl -w
    use Data::Dumper;
    ...
    print "$aref\n";
    print @$aref,"\n";
    __END__