Source File: ex04/main-a.go

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