11 lines
184 B
Perl
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;
|