pascalabcnet/TestSuite/CompilationSamples/Text1.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

15 lines
211 B
ObjectPascal

// Ïðîãðàììà, âûâîäÿùàÿ òåêñò èç ñâîåãî ôàéëà
var
f: Text;
begin
assign(f,'Text1.pas');
reset(f);
while not eof(f) do
begin
var s: string;
readln(f,s);
writeln(s);
end;
close(f);
end.