package bits

import "testing"

func TestBits(t *testing.T) {
	var b byte
	b = BitSet(b, true, 1)
	b = BitSet(b, true, 5)
	t.Log(b, StringBits(b))
}