Help for this page

Select Code to Download


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