feat(Go-StudyExample):2020/12/17:新增yanyiwu中文分词工具使用示例

This commit is contained in:
Huangzj
2020-12-17 09:15:56 +08:00
parent a97c2c9bcc
commit dc67bc0a60
4 changed files with 90 additions and 6 deletions
+8 -6
View File
@@ -7,13 +7,15 @@
package main
import (
"Go-StudyExample/example/originGoLanguage"
_ "Go-StudyExample/example/originGoLanguage/init"
"fmt"
"math"
)
func main() {
//go原生语言测试
originGoLanguage.TestOriginLang()
x := 0
for i := 1; i < 31; i++ {
x = x + 1<<i
}
fmt.Println(math.MaxInt32)
fmt.Println(x)
}