Not really. But if you want to make alot of newlines, you can do something like:
$X = "\n"x 10; That will make 10 new lines. or for dynamicness
$X = "\n"x $NumOfNewLines;
You can also put it in a print statement:
print "\n"x2;
or
print "\n"x$NumOfNewLines;
hope this helps.
|