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

14 lines
313 B
Ada

with Ada.Integer_Text_IO, Ada.Text_IO;
procedure Introspection is
use Ada.Integer_Text_IO, Ada.Text_IO;
begin
Put ("Integer range: ");
Put (Integer'First);
Put (" .. ");
Put (Integer'Last);
New_Line;
Put ("Float digits: ");
Put (Float'Digits);
New_Line;
end Introspection;