# go_practice **Repository Path**: pltrue/go_practice ## Basic Information - **Project Name**: go_practice - **Description**: go学习笔记 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-12 - **Last Updated**: 2021-06-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### Golang 学习笔记📒 ## 🐶 go ### Golang 手册 #### 第 1 章 基本数据结构 - [第 1 节:第一个go程序](code/hello_world.go) #### 第 2 章 控制结构 - [第 1 节:if-else](code/if_else.go) - [第 2 节:switch](code/switch.go) - [第 3 节:标签和goto](code/switch.go) - [第 4 节:break和continue](code/switch.go) #### 第 3 章 函数 - [练习1:编写一个函数,接收两个整数,然后返回它们的和、积与差。编写两个版本,一个是非命名返回值, 一个是命名返回值。](code/mult_returnval.go) - [defer 和追踪](docs/1_函数_defer.md) - [内置函数](docs/内置函数.md) - [使用递归-计算斐波那契数列](code/fibonacci.go) - [使用递归函数从 10 打印到 1](code/shidyi.go) - [实现一个输出前 30 个整数的阶乘的程序。](docs/1_函数_整数的阶乘.md) - [回调函数实例](code/function_parameter.go) #### 第 4 章 数组和切片 - [数组与拷贝](docs/1_数组_拷贝.md)