exercism/perl5/hello-world/HelloWorld.pm
2017-08-12 09:01:07 -05:00

11 lines
184 B
Perl

# Declare package 'HelloWorld' with version
package HelloWorld 1;
use strict;
use warnings;
sub hello {
# Remove the comments and write some code here to pass the test suite.
}
1;