The name of the executable

Report a typo

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?

Select one option from the list
___

Create a free account to access the full topic