fpc/docs/linuxex/ex39.pp
1998-03-25 11:26:49 +00:00

10 lines
163 B
ObjectPascal

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