summaryrefslogtreecommitdiff
path: root/fpcdocs/unixex/ex39.pp
blob: bdcc2029a6f4fabdfb8c89bf455c67f34ca50a98 (plain)
1
2
3
4
5
6
7
8
9
Program Example39;

{ Program to demonstrate the GetDomainName function. }

Uses Unix;

begin
  Writeln ('Domain name of this machine is : ',GetDomainName);
end.