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