// Add the package statement at the top for the `main` package. package main // You need to import the `"fmt"` package so you can use it. import "fmt" // You have to create a `main` function that Go will consider the start of your program. func main() { // Inside that `main` function you will place the code to tell `fmt` to print the line `"Hello World"`. fmt.Println("Hello World") }