- or download this
#!/usr/bin/perl -w
...
methods =>{md5=>sub {return md5_hex (shift)}});
__END__
- or download this
#!/usr/bin/perl -w
...
print $rpc->call ("md5", "1234"), $/;
__END__
- or download this
sub my_md5_hex {
my ($str) = @_;
...
chomp ($md5);
return $md5;
}