starting perl

This commit is contained in:
John Paul Wohlscheid 2021-01-28 04:49:12 -05:00
parent e657af0635
commit 74e0407970
2 changed files with 6 additions and 0 deletions

2
perl/hello Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/perl
print "Hello, world!\n";

4
perl/hello2 Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/perl
use v5.10;
say "Hello, World!";