RosettaCodeData/Task/Binary-strings/Ada/binary-strings-2.adb
2026-04-30 12:34:36 -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;