Help for this page

Select Code to Download


  1. or download this
    #!/usr/bun/perl -w
    use strict;   #added by me cause perlmonks taught me so :)
    ...
    
    print HelloWorld();
    print GoodByeWorld("sweet");
    
  2. or download this
    package World;
    
    ...
        return "Goodbye $adjective World\n";
    }
    1;
    
  3. or download this
    $ ./soapClientAutoDispatch.pl 
    Use of inherited AUTOLOAD for non-method main::HellowWorld() is deprec
    +ated at ./soapClientAutoDispatch.pl line 7.
    ...
    Use of uninitialized value in string eq at /usr/lib/perl5/site_perl/5.
    +6.1/SOAP/Lite.pm line 2374.
    Use of inherited AUTOLOAD for non-method main::GoodByeWorld() is depre
    +cated at ./soapClientAutoDispatch.pl line 8.
    Goodbye sweet World