This commit is contained in:
邹宗楠
2022-05-27 15:24:41 +08:00
parent 4a7cfc001f
commit 60c6876da7
2 changed files with 11 additions and 4 deletions

View File

@@ -31,3 +31,11 @@ func TestCode2(t *testing.T) {
fmt.Println(err)
fmt.Println(data)
}
func TestCode22(t *testing.T) {
fmt.Println(0&2 != 0)
fmt.Println(1&2 != 0)
fmt.Println(1&4 != 0)
fmt.Println(1&1 != 0)
fmt.Println(2&2 != 0)
}