Question by Aled: How can you repeat a string in PERL without any condition to stop?
i.e. repeat itself without a condition to be met
Best answer:
Answer by martinthurn
while (1)
{
# “repeat a string”
} # while
Add your own answer in the comments!












