add test dir

This commit is contained in:
2026-02-28 16:01:31 +04:00
parent 975dc43e00
commit 99c3b4d205
2 changed files with 11 additions and 0 deletions

1
test/README.md Normal file
View File

@@ -0,0 +1 @@
Директория для разлчных тестов!

10
test/mylib.pl Normal file
View File

@@ -0,0 +1,10 @@
sub hello {
my $name = shift;
print "Hello, $name!\n";
}
sub add {
my ($a, $b) = @_;
return $a + $b;
}
1;