RosettaCodeData/Task/Binary-strings/Ada/binary-strings-3.ada

5 lines
135 B
Ada
Raw Permalink Normal View History

2013-04-10 12:38:42 -07:00
with Interfaces; use Interfaces;
...
type Octet is new Interfaces.Unsigned_8;
type Octet_String is array (Positive range <>) of Octet;