- or download this
sub greet {
my $name = shift;
...
}
greet('dev2000');
- or download this
$_[0]->send_http_header('text/plain');
$_[0]->print("mod_perl rules!\n");
- or download this
my $r = shift;
...
- or download this
package Some::URL::Based::Package::Name;use Apache qw(exit);sub handle
+r {
#line 1 script.pl
...
...
}