pascalabcnet/_Presentations/2015 New Features/Programs/13_Files1.pas

13 lines
162 B
ObjectPascal
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
var
f: Text;
s: string;
begin
Assign(f,'13_Files1.pas');
Reset(f);
while not eof(f) do
begin
readln(f,s);
writeln(s);
end;
Close(f);
end.