Help for this page

Select Code to Download


  1. or download this
    print Dumper %amazonResults;
    print Dumper $conf;
    &processAmazonQuery(%amazonResults, $conf);
    
  2. or download this
    sub processAmazonQuery {
      my (%hash, $conf) = @_;    
    ...
      print "conf\n";
      print Dumper $conf;
    |