|
|
| The stupid question is the question not asked | |
| PerlMonks |
Re: Re: Re: divide by '/'by dws (Chancellor) |
| on Apr 12, 2001 at 20:47 UTC ( [id://72178]=note: print w/replies, xml ) | Need Help?? |
This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.
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";
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||