* File move to tests directory.

This commit is contained in:
daniel 1998-06-18 18:27:17 +00:00
parent 76dc49b25a
commit e0ab74277c

15
rtl/os2/tests/atx.pas Normal file
View File

@ -0,0 +1,15 @@
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.