Help for this page

Select Code to Download


  1. or download this
    foo(1,2);
    bar(1,2);
    
    sub foo { print pop; print pop }
    sub bar { print shift; print shift }
    
  2. or download this
    sub get_data {
       my ($name,$value,$uri) = @_;
       return SOAP::Data->name($name => $value)->type('string')->uri($uri)
    +;
    }