Browse Source

流程控制

fengchun_yuan 2 years ago
parent
commit
6d1c6cedb3
1 changed files with 28 additions and 0 deletions
  1. 28 0
      Go语言101/入门.md

+ 28 - 0
Go语言101/入门.md

@@ -616,6 +616,34 @@ import time "time" // <=> import "time"
 
 编译器会提示你的
 
+# 表达式、语句和简单语句
+
+不重要
+
+# 基本流程控制语法
+
+**基本流程控制代码块**
+
+1. if-else 条件分支代码块
+2. for 循环代码块
+3. switch-case 多条件分支代码块
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+