tw6822c.pp 257 B

1234567891011121314151617
  1. { %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos,aix,android,haiku }
  2. uses
  3. SysUtils;
  4. var
  5. t: text;
  6. begin
  7. { see uw6822a.pp }
  8. assign(t,'uw6822a.txt');
  9. {$i-}
  10. reset(t);
  11. {$i+}
  12. if ioresult<>0 then
  13. halt(1);
  14. close(t);
  15. erase(t);
  16. end.