working through variables section

This commit is contained in:
Dan Buch 2011-01-03 21:54:52 -05:00
parent c08ae44e27
commit b66d2832d6

7
cli/variables.pl Normal file
View File

@ -0,0 +1,7 @@
#!/usr/bin/perl
use strict;
use warnings;
my $firstname = "John";
print "Hello, $firstname\n";