in reply to Re^3: perl, SOAP and C#
in thread perl, SOAP and C#
Basically, I am trying to make a complex object, and then return it in perl, so that I can use SOAP to get the object in C#.sub makeSandwhich { my $lettuce = 'green'; my $bread = 2; my $sandwhich = "perl equivalent of lettuce and bread in one object"; return $sandwhich; }
|
|---|