二進位制和 Bitstrings
二進位制是無符號 8 位位元組序列。
placeholderCopy1> <<1,2,3,255>>.
<<1,2,3,255>>
2> <<256,257,258>>.
<<0,1,2>>
3> <<"hello","world">>.
<<"helloworld">>
位串是通用二進位制,其位長度不一定是 8 的倍數。
placeholderCopy1> <<1:1, 0:2, 1:1>>.
<<9:4>> % 4 bits bitstring