mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
12 lines
119 B
ObjectPascal
12 lines
119 B
ObjectPascal
{ %OPT=-Seh }
|
|
program Test;
|
|
|
|
{$HINTS ON}
|
|
|
|
var
|
|
cur: Currency;
|
|
begin
|
|
cur := 3.5;
|
|
cur := cur / 1.5;
|
|
end.
|