- or download this
#!/exlibris/metalib/m4_b/product/bin/perl
use demo;
{
my $externalObject = new demo;
}
- or download this
package demo;
require "wrapper";
...
&call_httpd_exec();
my $externalObject2 = new demo2;
}
- or download this
package demo2;
require "wrapper";
...
my $self = {};
&call_httpd_exec();
}
- or download this
sub call_httpd_exec{
print "hello world!!\n"
}
1;
- or download this
Undefined subroutine &demo::call_httpd_exec called at demo.pm line 8.