Suppose you have a Go program within the hello.go file. It contains the package main declaration and the main() function:
package main
import "fmt"
func main() {
fmt.Println("Hello, JetBrains Academy!")
}
After executing the go build hello.go command, what will be the name of the created executable?