This allows you to choose an alternate string delimiter instead of quotes.
# q operator allows for single quoting (no interpolation)
my $reminder = q^Dont't escape the single quote!^;
# qq operator allows for double quoting (interpolation)
my $complaint = qq{It's too early to be awake.};