fix: 修复 go mod 模块名

This commit is contained in:
2024-09-14 15:37:01 +08:00
parent 41c2b5d211
commit b169659e02
8 changed files with 9 additions and 10 deletions

14
sync_map_test.go Normal file
View File

@@ -0,0 +1,14 @@
package td_mapping
import (
"log"
"testing"
)
func TestAA(t *testing.T) {
var m Map[string, int]
m.Store("a", 1234)
value, _ := m.Load("a")
log.Println("value:", value)
}