RosettaCodeData/Task/Hostname/Ada/hostname.ada
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
127 B
Ada

with Ada.Text_IO; use Ada.Text_IO;
with GNAT.Sockets;
procedure Demo is
begin
Put_Line (GNAT.Sockets.Host_Name);
end Demo;