mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-11 09:19:35 +01:00
10 lines
166 B
ObjectPascal
10 lines
166 B
ObjectPascal
Program Example39;
|
|
|
|
{ Program to demonstrate the GetDomainName function. }
|
|
|
|
Uses oldlinux;
|
|
|
|
begin
|
|
Writeln ('Domain name of this machine is : ',GetDomainName);
|
|
end.
|