- or download this
print "Enter a first name: " ;
$fname = <STDIN> ;
chomp $fname ;
- or download this
print "Enter a first name: ";
chomp($fname = <STDIN>);
- or download this
if ($ans !~ m/[Yy]/)
{
...
$quit = 0 ;
}
- or download this
if( $answer =~ /^[Yy]/)
...
.
.