In Python, if I do this:
print \"4\" * 4
I get
> \"4444\"
In Perl, I\'d get
> 16 >
It's very similar in Perl
print "4" x 4;