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

35 lines
493 B
ObjectPascal

{ Old file: tbs0017.pp }
{ }
const
nextoptpass : longint = 0;
procedure init;
const
endofparas : boolean = false;
procedure getparastring;
procedure nextopt;
begin
endofparas:=true;
getparastring;
inc(nextoptpass);
init;
end;
begin
if not endofparas then
nextopt;
end;
begin
getparastring;
end;
begin
init;
if nextoptpass<>1 then Halt(1);
end.