Browse Source

* File move to tests directory.

daniel 27 years ago
parent
commit
e0ab74277c
1 changed files with 15 additions and 0 deletions
  1. 15 0
      rtl/os2/tests/atx.pas

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