RosettaCodeData/Task/Binary-strings/Ada/binary-strings-2.ada
Ingy döt Net 86c034bb8b new files
2013-04-10 12:38:42 -07: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;