RosettaCodeData/Task/Hostname/Ada/hostname.adb

8 lines
127 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
with Ada.Text_IO; use Ada.Text_IO;
with GNAT.Sockets;
procedure Demo is
begin
Put_Line (GNAT.Sockets.Host_Name);
end Demo;