Is there an easy way to print out a Perl array with commas in between each element?
Writing a for loop to do it is pretty easy but not quite elegant....
This might not be what you're looking for, but here's something I did for an assignment:
$" = ", "; print "@ArrayName\n";