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

9 lines
140 B
ObjectPascal

begin
var f := OpenRead('13_Files2.pas');
while not f.Eof do
begin
var s := f.ReadlnString;
writeln(s);
end;
f.Close;
end.