mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:47:52 +02:00
28 lines
336 B
ObjectPascal
28 lines
336 B
ObjectPascal
procedure init;
|
|
|
|
var
|
|
endofparas : boolean;
|
|
|
|
procedure getparastring;
|
|
|
|
procedure nextopt;
|
|
|
|
begin
|
|
getparastring;
|
|
init;
|
|
endofparas:=false;
|
|
end;
|
|
|
|
begin
|
|
nextopt;
|
|
end;
|
|
|
|
begin
|
|
getparastring;
|
|
end;
|
|
|
|
begin
|
|
init;
|
|
end.
|
|
|