tw9089d.pp 238 B

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