mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 13:59:29 +02:00
11 lines
104 B
ObjectPascal
11 lines
104 B
ObjectPascal
{ %OPT=-MObjFPC }
|
|
|
|
program Project1;
|
|
type
|
|
c = type currency;
|
|
var
|
|
a: c;
|
|
begin
|
|
a:=currency(1);
|
|
end.
|