Add comments to the code so that the program outputs "Hello, I will be a cool Golang hacker".
Comments
Uncommenting lines
Report a typo
Sample Input 1:
Sample Output 1:
Hello, I will be a cool Golang hackerWrite 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")
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.