فهرست منبع

* File move to tests directory.

daniel 27 سال پیش
والد
کامیت
e0ab74277c
1فایلهای تغییر یافته به همراه15 افزوده شده و 0 حذف شده
  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.