3.4 Bit Strings and Binaries
A bit string is used to store an area of untyped memory.
Bit strings are expressed using the bit syntax.
Bit strings that consist of a number of bits that are evenly divisible by eight, are called binaries
Examples:
- 1> <<10,20>>.
- <<10,20>>
- 2> <<"ABC">>.
- <<"ABC">>
- 1> <<1:1,0:1>>.
- <<2:2>>
For more examples, see Programming Examples.