mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 07:59:25 +02:00
10 lines
163 B
ObjectPascal
10 lines
163 B
ObjectPascal
Program Example39;
|
|
|
|
{ Program to demonstrate the GetDomainName function. }
|
|
|
|
Uses linux;
|
|
|
|
begin
|
|
Writeln ('Domain name of this machine is : ',GetDomainName);
|
|
end.
|