I'm trying to pass 2 values into a function, using a foreach statement. For example
searching for array pairs returned mostly result about hashes.
I never had to use hashes, so I know little about them. Not sure if I can use them since I don't have a 'key'. If not, how can I do this with arrays, split? I couldn't get that syntax right either. TIA-
Code:
my @things = (car::grey, house::yellow, base::own);
foreach (@things){
print "My $first is $second.\n"
}
I never had to use hashes, so I know little about them. Not sure if I can use them since I don't have a 'key'. If not, how can I do this with arrays, split? I couldn't get that syntax right either. TIA-