fpc/tests/webtbs/tw1477.pp
2001-05-20 12:07:56 +00:00

9 lines
104 B
ObjectPascal

CONST
Digit:Byte=3;{did work if we use DWord}
VAR
x:Real;
BEGIN
x:=10;
WriteLn(x:1:Digit);
END.