mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:47:58 +02:00
11 lines
89 B
ObjectPascal
11 lines
89 B
ObjectPascal
var
|
|
c : comp;
|
|
|
|
begin
|
|
c:=1234;
|
|
writeln(c);
|
|
readln(c);
|
|
writeln(c);
|
|
end.
|
|
|