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

Level 1 Lesson 6 go lang

output is ok but it is saying this is not same output.
package main
import "fmt"
func main() {
fmt.Println("Ahoy! Studytonight.")
}
by

1 Answer

iamabhishek
The correct code is:

package main

import "fmt"

func main() {
fmt.Println("Ahoy!", "Studytonight")
}

Login / Signup to Answer the Question.