From 76cca82f6e7af12e14c6bd73d229333dd56ff36c Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Mon, 3 Jan 2011 22:42:56 -0500 Subject: [PATCH] playing with string operators --- cli/string_operators.pl | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 cli/string_operators.pl diff --git a/cli/string_operators.pl b/cli/string_operators.pl new file mode 100644 index 0000000..c379512 --- /dev/null +++ b/cli/string_operators.pl @@ -0,0 +1,4 @@ +#!/usr/bin/perl + +print "Hello" . "World\n"; +print "Hello" . " " . "World\n";