Merge remote-tracking branch 'origin/master'

This commit is contained in:
John Paul Wohlscheid 2021-03-02 06:45:47 -05:00
commit 9e716f942a
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!";