fpc/rtl/os2/tests/atx.pas
1998-06-18 18:27:17 +00:00

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.