I'm not really sure if there is anything hidden about Repeat()? Of course, you have to know about it, but you will come across it fairly quickly in scripting index. But you might need a bit of luck as the function group which it belongs to is Character and not Character, Matrix and List which it should be but it isn't the only one like this.
You can also go with a bit more "normal" route where replace all values in a list
Names Default To Here(1);
l = As List(J(1000, 1, .));
l[1::N Items(l)] = "A";
show(l);
-Jarmo