home *** CD-ROM | disk | FTP | other *** search
- (*****************************************************************)
-
- function constr(character:char;times:integer):string;
-
- var
- i:integer;
- begin
- for i:=1 to times do
- constr[i]:=character;
- constr[0]:=chr(ord(times));
- end;{function constr}