http://qs321.pair.com?node_id=849818

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

I want my Perl one-liner to print quotes. See my attempts below.
$ perl -lane "print 'hello '' ' " $ perl -lane 'print "hello '' " -- this seems to be waiting for som +ething. $ perl -lane 'print "hello \'\' " -- this also seems to be waiting fo +r something.
TIA.