module comp.hr; string hr(int col) { string ps; foreach (i; 0 .. col) { ps ~= '─'; } return ps; }