From dc67bc0a609bb4f3e2d78606052637c9bf52b803 Mon Sep 17 00:00:00 2001 From: Huangzj Date: Thu, 17 Dec 2020 09:15:56 +0800 Subject: [PATCH] =?UTF-8?q?feat(Go-StudyExample):2020/12/17=EF=BC=9A?= =?UTF-8?q?=E6=96=B0=E5=A2=9Eyanyiwu=E4=B8=AD=E6=96=87=E5=88=86=E8=AF=8D?= =?UTF-8?q?=E5=B7=A5=E5=85=B7=E4=BD=BF=E7=94=A8=E7=A4=BA=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Main.go | 14 +++--- example/participle/Participle_test.go | 64 +++++++++++++++++++++++++++ example/participle/readme.md | 16 +++++++ readme.md | 2 + 4 files changed, 90 insertions(+), 6 deletions(-) create mode 100644 example/participle/Participle_test.go create mode 100644 example/participle/readme.md diff --git a/Main.go b/Main.go index 46f6952..0783a22 100644 --- a/Main.go +++ b/Main.go @@ -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<