题解 | #小明信息#
小明信息
http://www.nowcoder.com/practice/43ccf745188846a688949b91dd9afe4b
值得注意的是 性别男 是 true 不是string
import "fmt"
func main() {
name := "小明"
age := 23
var sex bool
sex = true
fmt.Println(name)
fmt.Println(age)
fmt.Println(sex)
}