Help for this page

Select Code to Download


  1. or download this
    my @numbers;
    # Assuming we're reading from a file line by line...
    ...
        }
    }
    print "$_\n" for @numbers;
    
  2. or download this
    perl -ne "m/^Change\s(\d+)\s/ && print $1, qq/\n/;"