fpc/docs/bunixex/ex16.pp
2004-10-22 21:57:33 +00:00

10 lines
177 B
ObjectPascal

Program Example16;
{ Program to demonstrate the GetPid, GetPPid function. }
Uses BaseUnix;
begin
Writeln ('Process Id = ',fpgetpid,' Parent process Id = ',fpgetppid);
end.