문제

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,

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top