Help for this page
use warnings; use strict; ... my $input = <STDIN>; chomp $input; exit if $input eq 'e' or $input eq 'E';
exit if $input =~ /^e$/i;