#!/usr/bin/perl -wuse strict;print "Please enter some text:\n";while () { if ($_ eq "\n") { next; } chomp; print "You entered: [$_]\n";}