pascalabcnet/_Presentations/2015 New Features/Programs/13_Files1.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

13 lines
162 B
ObjectPascal

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.