From 760ded693b3bd01e5cbc23c42e21ae105ad1bfde Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Wed, 5 Jan 2011 21:32:20 -0500 Subject: [PATCH] some string quoting exercises --- cli/quoting.pl | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 cli/quoting.pl 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 <