fpc/docs/olinuxex/ex40.pp
2004-10-16 13:14:03 +00:00

10 lines
155 B
ObjectPascal

Program Example40;
{ Program to demonstrate the GetHostName function. }
Uses oldlinux;
begin
Writeln ('Name of this machine is : ',GetHostName);
end.