Language Basics Perl

#!/usr/bin/perl
use warnings;
use strict;
my @words;
while (<>) {
   # read each line into $_ in turn
   push @words, split; # split $_ into words and store them
}
print "Found ", scalar(@words), " words in input \n";