Help for this page

Select Code to Download


  1. or download this
    sub find_year {
        my( $str ) = @_;
    ...
    ) {
        print $title , " => ", find_year($title), "\n";
    }
    
  2. or download this
    sub find_year {
        my( $str ) = @_;
    ...
    
    for my $title {
    print $title , " => ", find_year($title), "\n"; }