Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
      $result = $cache{$_} ||= get_data($_);
      print "$result\n";
    }
    
  2. or download this
    retrieving data for 1...
    value for 1
    ...
    value for 64
    value for 1
    value for 2