学习go语言 过程中遇到的问题 总结:
问题1:写一个hello world unexpected semicolon or new line
函数大括号 不能单独起一行
错误代码
func init()
{
fmt.Println("hello world");
}
正确代码
func init(){
fmt.Println("hello world");
}
问题2:command -line-arguments
代码:
func main(){
fmt.Println("欢迎使用go语言")
}
解决方法:使用utf8 无bom 编码
有疑问加站长微信联系(非本文作者)