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

8 lines
252 B
Ada

with Ada.Text_IO; use Ada.Text_IO;
with System; use System;
procedure Host_Introspection is
begin
Put_Line ("Word size" & Integer'Image (Word_Size));
Put_Line ("Endianness " & Bit_Order'Image (Default_Bit_Order));
end Host_Introspection;