A word that hos no other interpretation in the grammar is treated as if it were a quoted string. These are called barewords, e.g.print <<EOF The price is the $Price. ... EOF ; # essential to not get results combined with next statement!
Customary | Generic | Meaning | Substitute Interpolate |
'' | q// | Literal | No |
"" | qq// | Literal | Yes |
`` | qx// | Command | Yes |
() | qw// | Word List | No |
// | m// | Pattern Match | Yes |
s// | s// | Substitution | Yes |
y// | tr// | Translation | No |