diff options
Diffstat (limited to 'Code/Perl/hello_strict.pl')
-rwxr-xr-x | Code/Perl/hello_strict.pl | 5 |
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"; |