summaryrefslogtreecommitdiff
path: root/fpcdocs/olinuxex/ex40.pp
blob: f629dbf784ab72f2fcd0542e933544e031735372 (plain)
1
2
3
4
5
6
7
8
9
Program Example40;

{ Program to demonstrate the GetHostName function. }

Uses oldlinux;

begin
  Writeln ('Name of this machine is : ',GetHostName);
end.