Mega Code Archive

 
Categories / Perl / String
 

Brackets and Repetition operator

#!/usr/bin/perl use warnings; print"Ba". "na"x4*3 ,"\n"; print "Ba". "na"x(4*3) ,"\n";