RosettaCodeData/Task/Hostname/Pascal/hostname.pascal

9 lines
102 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
Program HostName;
uses
unix;
begin
writeln('The name of this computer is: ', GetHostName);
end.