Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Pls share level 1 lesson 4 - 5 Answer

In the code provided in the Editor, we have used Println() function twice.

You have to use the multiline comment syntax to comment out the Println() statement that prints 'We hope you like it' message
by

1 Answer

sam5epi0l
Seems you are in level 1 > lesson5. Here is a possible solution:

package main

import "fmt"

func main() {
fmt.Println("Welcome to GO Course")
/
fmt.Println("We hope you like it")
/
}

Login / Signup to Answer the Question.