mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 06:19:32 +02:00
12 lines
106 B
ObjectPascal
12 lines
106 B
ObjectPascal
var
|
|
c : comp;
|
|
|
|
begin
|
|
c:=1234;
|
|
writeln(c);
|
|
{readln(c);}
|
|
c:=-258674;
|
|
writeln(c);
|
|
end.
|
|
|