tb0466.pp 227 B

12345678910111213
  1. var
  2. outf : file of byte;
  3. w : word;
  4. begin
  5. assign(outf, 'tb0466.tmp');
  6. rewrite(outf);
  7. {only explicit typecasting helps: byte(10)}
  8. write(outf, 10);
  9. w:=20;
  10. write(outf, w);
  11. close(outf);
  12. erase(outf);
  13. end.