print qq/"I can't help you!"\n/; # qq for double quotesprint qq($5.00\n); print q/$5.00\n/; print qq(\$5.00\n); # escape the dollar signprint q!I need $5.00!,"\n";print qq/Today is /, qx/date/;print "The hour is ", qx{date +%H};