diff --git a/test/test.go b/test/test.go new file mode 100644 index 0000000..a3699e7 --- /dev/null +++ b/test/test.go @@ -0,0 +1,10 @@ +package test + +import ( + "fmt" +) + +func test() { + // 测试中文 + fmt.Println("Hello, 世界") +}