Assuming I have the following:
my @net = (`echo "HELLO" > file`,
`less file`);
is it guaranteed that the order of execution is from 0..N (the first element in the array is executed first, then the second,etc..)?
I've tested this, and this is what really happens, but can I count on that?
thanks,