add test dir
This commit is contained in:
10
test/mylib.pl
Normal file
10
test/mylib.pl
Normal file
@@ -0,0 +1,10 @@
|
||||
sub hello {
|
||||
my $name = shift;
|
||||
print "Hello, $name!\n";
|
||||
}
|
||||
|
||||
sub add {
|
||||
my ($a, $b) = @_;
|
||||
return $a + $b;
|
||||
}
|
||||
1;
|
||||
Reference in New Issue
Block a user