aboutsummaryrefslogtreecommitdiff
path: root/Code/Perl/hello_strict.pl
diff options
context:
space:
mode:
authorGeorge V. Neville-Neil <gnn@FreeBSD.org>2012-05-12 20:38:18 +0000
committerGeorge V. Neville-Neil <gnn@FreeBSD.org>2012-05-12 20:38:18 +0000
commit055173dba4a263acf10325a49eebf82915369ed2 (patch)
treeaec2772e8855e6dbaea6d8136ed0c47bcb825dee /Code/Perl/hello_strict.pl
parent87c8f7aa3a46118212b99f0d58b18aa93c06b02a (diff)
Notes
Diffstat (limited to 'Code/Perl/hello_strict.pl')
-rwxr-xr-xCode/Perl/hello_strict.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/Code/Perl/hello_strict.pl b/Code/Perl/hello_strict.pl
new file mode 100755
index 000000000000..78003a971448
--- /dev/null
+++ b/Code/Perl/hello_strict.pl
@@ -0,0 +1,5 @@
+#!./perl -w
+
+use strict;
+
+print "Hello World!\n";