“Hello, World!” is the principal fundamental program in any programming language. Therefore, we should compose the main program in the Go Language.
Hello World Go Program
package main
import "fmt"
func main(){
fmt.Println("Hello, World!")
}
The output would be as follows:
Hello, World!
Leave a Reply