== Quote from Steven Schveighoffer ([email protected])'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

Reply via email to