RosettaCodeData/Task/Variable-size-Set/Ada/variable-size-set.ada

3 lines
189 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
type Response is (Yes, No); -- Definition of an enumeration type with two values
for Response'Size use 1; -- Setting the size of Response to 1 bit, rather than the default single byte size