RosettaCodeData/Task/Binary-strings/Ada/binary-strings-2.adb

4 lines
103 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
type Octet is mod 2**8;
for Octet'Size use 8;
type Octet_String is array (Positive range <>) of Octet;