GOstudy-02 goland 编写第一个程序

1、项目创建

image.png

2、代码编写 出现一个bug

package Study
import "fmt"

func main()  {
    fmt.Print("HelloWorld")
}
image.png

3、解决bug

image.png
package main
import "fmt"

func main()  {
    fmt.Print("HelloWorld")
}

你可能感兴趣的:(GOstudy-02 goland 编写第一个程序)