summaryrefslogtreecommitdiff
path: root/Code/Perl/hello_strict.pl
diff options
context:
space:
mode:
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 0000000000000..78003a971448e
--- /dev/null
+++ b/Code/Perl/hello_strict.pl
@@ -0,0 +1,5 @@
+#!./perl -w
+
+use strict;
+
+print "Hello World!\n";