Mega Code Archive

 
Categories / Perl / String
 

Combine string concatenation operator and string multiplication operator

#!/usr/bin/perl -w print "Ba" . "na" x 4 ,"\n";