fpc/docs/unixex/ex39.pp
2004-10-22 21:57:33 +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.