fpc/docs/linuxex/ex39.pp
2004-07-18 11:57:11 +00:00

10 lines
162 B
ObjectPascal

Program Example39;
{ Program to demonstrate the GetDomainName function. }
Uses Unix;
begin
Writeln ('Domain name of this machine is : ',GetDomainName);
end.