(byte-array) ( n -- byte-array )


Vocabulary
byte-arrays

Inputs
na non-negative integer


Outputs
byte-arraya byte-array


Examples
USING: byte-arrays prettyprint ; 3 (byte-array) .
B{ 103 189 48 }


Word description
Creates a new byte-array of length n bytes, with the elements containing unspecified values.

See also
<byte-array>

Definition