== Quote from Steven Schveighoffer (schveiguy at yahoo.com)'s article
> I was wrong, I looked through the runtime and did not find such a
function.
std.string has a repeat() function.  Try:
import std.string;
void main()
{
   string divider = repeat("-", 5);
   writeln(divider);
}
Jason