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