mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 12:50:31 +02:00
16 lines
213 B
ObjectPascal
16 lines
213 B
ObjectPascal
program atx;
|
|
|
|
var f:text;
|
|
s:string;
|
|
|
|
begin
|
|
assign(f,'c:\autoexec.bat');
|
|
reset(f);
|
|
while not eof(f) do
|
|
begin
|
|
readln(f,s);
|
|
writeln(s);
|
|
end;
|
|
close(f);
|
|
end.
|