xref: /netbsd-src/external/bsd/nvi/dist/perl_scripts/wc.pl (revision 82d56013d7b633d116a93943de88e08335357a7c)
1sub wc {
2  my $words;
3  $i = $VI::StartLine;
4  while ($i <= $VI::StopLine) {
5    $_ = $curscr->GetLine($i++);
6    $words+=split;
7  }
8  $curscr->Msg("$words words");
9}
10
111;
12