in reply to Re^3: perl, SOAP and C#
in thread perl, SOAP and C#

I am sorry. I am new to perl so I'm not familiar with everything yet. Basically, I want to have something like this:
sub makeSandwhich { my $lettuce = 'green'; my $bread = 2; my $sandwhich = "perl equivalent of lettuce and bread in one object"; return $sandwhich; }
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#.