- or download this
package WorldFunctions;
sub new { bless {}, shift; }
...
return 'Goodbye, ' . $name . "\n";
}
1;
- or download this
package CLASS::World;
...
return 'Goodbye, ' . $name . "\n";
}
1;
- or download this
use WSDL::Generator;
my $init = {
...
WorldFunctions->Hello('Joe');
WorldFunctions->GoodBye('Joe');
print $w->get(WorldFunctions);