Paul Kraus wrote: > Can you define a list with my? > > I tried > my ($var1, $var2) = 'something','something else'; > I have also tried > my ($var1, $var2 = 'something','something else'); > > Thanks. > > Paul
When you say list, then hash comes to mind. So to do a list then you need key and data. my %MyList = ( 'key1', 'data1', 'key2, 'data2'); So the %MyList now has $MyList{key1} has data of 'data1' and $MyList{key2} has data of 'data2'; Wags ;) ********************************************************** This message contains information that is confidential and proprietary to FedEx Freight or its affiliates. It is intended only for the recipient named and for the express purpose(s) described therein. Any other use is prohibited. **************************************************************** -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]