Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

How to? %@REPEAT something with a space at the end

Jul
530
10
Just trying to %@repeat a character with a space after it and i can’t.... There’s gotta be an easy way I’m missing.
 
@REPEAT only repeats one character, not a string. If you pass multiple characters, only the first one will be repeated.

Code:
C:\>echo %@repeat[foo bar baz,12]
ffffffffffff

C:\>
 
OH GOOD LORD

Derp

Thanks for clarifying that. Here I was putting effort towards the impossible. Comical!
 
Back
Top