fpc/tests/tbs/tb0466.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

13 lines
211 B
ObjectPascal

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);
end.