Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- type TArrString = array of string;
- procedure AppendToTextFile(FileName : string; const contents : TArrString);
- var f : text;
- elem : string;
- begin
- assign(f, FileName);
- append(f);
- for elem in contents do
- writeln(f, elem);
- close(f);
- end;
Advertisement
Add Comment
Please, Sign In to add comment