6.E. String Types - JulTob/Ada GitHub Wiki
You can define fixed-length String Types
subtype Short_Name is String(1 .. 20);
-- A subtype of String with a fixed length, useful for ensuring that names do not exceed a certain length.
type Password is String(1 .. 16);
-- A fixed-length string type for storing passwords, ensuring they adhere to a length requirement.