fpc/tests/webtbs/tw33963.pp
2019-12-01 20:24:00 +00:00

12 lines
186 B
ObjectPascal

{$ifdef fpc}{$mode delphi}{$H+}{$endif}
var C: Currency;
begin
c:= 1000;
c:= c*1.05;
// at this point C=1050
writeln(c:4:2);
if c<>1050 then
halt(1);
writeln('ok');
end.