Uncommenting lines

Report a typo

Add comments to the code so that the program outputs "Hello, I will be a cool Golang hacker".

Sample Input 1:

Sample Output 1:

Hello, I will be a cool Golang hacker
Write a program in Go
package main

import "fmt"

func main(){
fmt.Print("Hello, ")
fmt.Println("World, ")
fmt.Println("What!, no no no, we will output Hello Golang, not more Hello World here")
fmt.Println("I will be a cool Golang hacker")
}
___

Create a free account to access the full topic