RosettaCodeData/Task/Binary-strings/Ada/binary-strings-2.ada
2023-07-01 13:44:08 -04:00

3 lines
103 B
Ada

type Octet is mod 2**8;
for Octet'Size use 8;
type Octet_String is array (Positive range <>) of Octet;