in reply to Naked quotes work like m//?

It looks like it behaves like a regex delimiter without the m.

perl -MO=Deparse -e '$a = "foo"; print 1 if $a =~ "foo"' $a = 'foo'; print 1 if $a =~ /foo/;
It will match a pattern, too, not just a literal string. print 1 if $a =~ "fo."; works fine.

Neat.