strRep (Repeats a string of characters)
info("str strRep(str _text, str _number)");
info("Repeats a string of characters.");
info("_text - The string of characters to be repeated.");
info("_number - The number of times text should be repeated.");
info("strRep(\"0\",3) " + strRep("0",3));