私が次のものを持っていると仮定します:
my @net = (`echo "HELLO" > file`,
`less file`);
実行順序が 0..N からであることは保証されていますか (配列の最初の要素が最初に実行され、次に 2 番目の要素が実行されるなど)?
私はこれをテストしましたが、これが実際に起こることですが、それを当てにできますか?
ありがとう、
Yes. Each of the comma-separated items in your brackets ()
on the right-hand side are terms. These have the highest precedence in Perl, and evaluate left-to-right. Backticks are quote-like operators.