Help for this page

Select Code to Download


  1. or download this
    my @dates_copy = @dates;
    while (<NOTES>) {
        $/ = "\n\n";
    ...
        push @notes, ($date, $_);
        %notes = @notes;
    }
    
  2. or download this
    local $/ = "\n\n";
    @notes{ @dates } = map { chomp; $_ } <NOTES>;