From 4a8c0ec714f29860f23b620827a1169ccb209a9f Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Mon, 3 Jan 2011 21:51:22 -0500 Subject: [PATCH] working through wikibooks tutorial again ... doing basic stuff --- cli/myprog.pl | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cli/myprog.pl diff --git a/cli/myprog.pl b/cli/myprog.pl new file mode 100644 index 0000000..5b0b56c --- /dev/null +++ b/cli/myprog.pl @@ -0,0 +1,5 @@ +#!/usr/bin/perl +use strict; +use warnings; + +print "Hello World\n";