mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
12 lines
186 B
ObjectPascal
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.
|