Regular Expression Perl

$line = ".Hello!";
if ($line =~ m/\A\./) {
    print "Shouldn't start a sentence with a period!";
}