Go! Golang comments!

Report a typo

Given a program with commented code. Uncomment it so that the program outputs:

Go!
Golang!!
Go go go!!!

Sample Input 1:


Sample Output 1:

Go!
Golang!!
Go go go!!!
Write a program in Go
package main

import "fmt"

func main() {
/* fmt.Println("Go!")
// fmt.Println("1")
// fmt.Println("@")
// fmt.Println("Hello, ")

// fmt.Println("Golang!!")
// fmt.Println("World")

fmt.Println("Go go go!!!")*/
}
___

Create a free account to access the full topic