ex40.pp 152 B

123456789
  1. Program Example40;
  2. { Program to demonstrate the GetHostName function. }
  3. Uses linux;
  4. begin
  5. Writeln ('Name of this machine is : ',GetHostName);
  6. end.