mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 19:07:59 +02:00
14 lines
201 B
ObjectPascal
14 lines
201 B
ObjectPascal
{ Old file: tbs0115.pp }
|
|
{ missing writeln for comp data type OK 0.99.6 (FK) }
|
|
|
|
var
|
|
c : comp;
|
|
|
|
begin
|
|
c:=1234;
|
|
writeln(c);
|
|
{readln(c);}
|
|
c:=-258674;
|
|
writeln(c);
|
|
end.
|