Help for this page

Select Code to Download


  1. or download this
        for (my $i=1135202400; $i <= 1188252000; $i+86400) {
            print ">$i<\n";
        }
    
  2. or download this
        for (my $i=1135202400; $i <= 1188252000; $i++) {
            print ">$i<\n" unless ($i%86400);
        }
    
  3. or download this
    >1135209600<
    >1135296000<
    ...
    >1135900800<
    >1135987200<
    ...