- or download this
In MyClass.pm:
{
...
# call some function from mymodule
}
- or download this
In myapp.pl:
use mymodule;
# call some function from mymodule
- or download this
#!/usr/bin/perl -w
...
use test_func;
test_me('in main');
- or download this
sub test_me {
my $txt = shift;
...
}
1;
- or download this
Undefined subroutine &main::test_me called at test_loading.pl line 25