fpc/tests/tbs/tb0097.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

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.