Help for this page

Select Code to Download


  1. or download this
    print $edits[0][0], "\n";
    print $edits[1][0], "\n";
    # etc
    
  2. or download this
    print join('|', map $_->[0], @edits), "\n";
    
  3. or download this
    my @edits = map $_->[0], @{ $timestamps{$page} } ;
    print Dumper @edits;
    print join('|', @edits), "\n";