1
0
Fork 0

更新 README.md,调整构建命令的顺序和注释,增强可读性

This commit is contained in:
IvisTang 2025-12-09 10:57:28 +08:00
parent 59f61e54fd
commit 539182fded
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@
To build the Go examples in this directory, navigate to the specific example folder and run the following command:
```bash
make
# 或者依次运行所有命令
make build ## 构建所有示例
make test ## 运行所有示例
make clean ## 清理构建产物
# 或者运行所有命令
make
```