fpc/docs/linuxex/ex40.pp
1998-03-25 11:26:49 +00:00

10 lines
152 B
ObjectPascal

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