iswbm / GolangCodingTime

Go编程时光,一个零基础入门 Golang 的教程

Home Page:http://golang.iswbm.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

3.4代码规范第7点有误

jubarcn opened this issue · comments

  1. 包的导入
    单行的包导入

import "fmt"
多个包导入,请使用 {} 来组织

import {
"fmt"
"os"
}

应该是()

感谢指正,已更新