当前位置: 代码迷 >> 综合 >> .\main.go:3:6: missing function body .\main.go:4:1: syntax error: unexpected semicolon or newline be
  详细解决方案

.\main.go:3:6: missing function body .\main.go:4:1: syntax error: unexpected semicolon or newline be

热度:58   发布时间:2023-09-19 19:40:31.0

.\main.go:3:6: missing function body
.\main.go:4:1: syntax error: unexpected semicolon or newline before {

package main

import "fmt"

func main()

{

    fmt.Println("Hello world!")

}

正确写法:

package main

import "fmt"

func main(){

    fmt.Println("Hello world!")

}

 

  相关解决方案