Mega Code Archive

 
Categories / Perl / Language Basics
 

$ is the separator

@array = (1, 2, 3); $" = ','; $text = "@array"; print $text;