fpc/tests/test/trstr2.pp
2007-05-14 17:34:01 +00:00

11 lines
135 B
ObjectPascal

var
s: ansistring;
i,j: integer;
begin
s := '15 305';
readstr(s,i,j);
if (i <> 15) or
(j <> 305) then
halt(1);
end.