9.0. Record Types - JulTob/Ada GitHub Wiki


type Person is record
   Name : String(1 .. 50);
   Age  : Integer range 0 .. 120;
end record;
-- A record type for storing information about a person, with constraints on each field.