mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:10:59 +02:00
10 lines
152 B
ObjectPascal
10 lines
152 B
ObjectPascal
Program Example40;
|
|
|
|
{ Program to demonstrate the GetHostName function. }
|
|
|
|
Uses linux;
|
|
|
|
begin
|
|
Writeln ('Name of this machine is : ',GetHostName);
|
|
end.
|