From e0ab74277c00e1a738d414ca34525dbb10f60400 Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 18 Jun 1998 18:27:17 +0000 Subject: [PATCH] * File move to tests directory. --- rtl/os2/tests/atx.pas | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 rtl/os2/tests/atx.pas diff --git a/rtl/os2/tests/atx.pas b/rtl/os2/tests/atx.pas new file mode 100644 index 0000000000..2b7b0c549e --- /dev/null +++ b/rtl/os2/tests/atx.pas @@ -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.