in reply to Re: Re: divide by '/'
in thread divide by '/'
Yup. Stringifying the array automatically uses $" ($LIST_SEPARATOR if you use English;) as a separator. It's a shortcut for saying
print join($", @sorted), "\n";
which, since $" defaults to ' ', is a also a shortcut for
print join(' ', @sorted), "\n";