mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-18 18:02:39 +02:00
10 lines
162 B
ObjectPascal
10 lines
162 B
ObjectPascal
Program Example39;
|
|
|
|
{ Program to demonstrate the GetDomainName function. }
|
|
|
|
Uses Unix;
|
|
|
|
begin
|
|
Writeln ('Domain name of this machine is : ',GetDomainName);
|
|
end.
|