Let's say I want to concatenate a certain string, e.g. "#", a certain number of times, e.g. n=5. (the number of times, n, is variable.)
So for n=5, we would get: ##### but for n=2, we would get: ## etc.
Is there a way to do this without using a loop?