package bits import "testing" func TestBits(t *testing.T) { var b byte b = SetBit(b, true, 1) b = SetBit(b, false, 1) t.Log(StringBits(b)) }