#

Generate a string of characters

function str(n,c, x) { while ((n--) > 0) x= x c; return x; }