Challenge: Hello World
Swipe to show menu
Task
Complete the following code that displays "Operation Successful".
index.go
123456package main import "fmt" func main() { ___("Operation Successful") }
- Use a function to display text.
- The function comes from the fmt package.
- Fill in the blank with the correct function name.
package main
import "fmt"
func main() {
fmt.Println("Operation Successful")
}
Everything was clear?
Thanks for your feedback!
Sectionย 1. Chapterย 7
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Sectionย 1. Chapterย 7