diff --git a/cli/quoting.pl b/cli/quoting.pl new file mode 100644 index 0000000..121adc8 --- /dev/null +++ b/cli/quoting.pl @@ -0,0 +1,34 @@ +#!/usr/bin/env perl +use strict; +use warnings; + + +print qq{I said "They're the most delicious fruits!".\n}; +print q/I said "They're the most delicious fruits!"./ . "\n"; + + +print <