fpc/docs/unixex/ex40.pp
2004-10-22 21:57:33 +00:00

10 lines
151 B
ObjectPascal

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