From b66d2832d6fba9a1b21f470f3585a738ff1f96f3 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Mon, 3 Jan 2011 21:54:52 -0500 Subject: [PATCH] working through variables section --- cli/variables.pl | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cli/variables.pl diff --git a/cli/variables.pl b/cli/variables.pl new file mode 100644 index 0000000..282b6e0 --- /dev/null +++ b/cli/variables.pl @@ -0,0 +1,7 @@ +#!/usr/bin/perl +use strict; +use warnings; + +my $firstname = "John"; + +print "Hello, $firstname\n";