ex39.pp 162 B

123456789
  1. Program Example39;
  2. { Program to demonstrate the GetDomainName function. }
  3. Uses Unix;
  4. begin
  5. Writeln ('Domain name of this machine is : ',GetDomainName);
  6. end.