Help for this page

Select Code to Download


  1. or download this
        my @words = split;
        my @tags = (); # tags found at the end of this note
    ...
          push @tags, $tag;
          push (@{$lines{$tag}}, \$this_line);
        }
    
  2. or download this
        my @tags; # tags found at the end of this note
        for my $tag ( reverse split ) {
    ...
          push @tags, $tag;
          push @{ $lines{ $tag } }, \$this_line;
        }