Except that in Perl, that snippet you wrote is trying to join a single array ref. Should be join(' ', (1, 2, 3)) , or heck, even join(' ', 1, 2, ...
確定! 回上一頁