Suppose you're starting a new project and have chosen the packages you will use. You've imported these packages but want to ensure they are formatted correctly before using them.
Your task is to format the import statement of the following program using the appropriate Go tool:
package main
import (
"github.com/golang/exp/slices"
"sort"
"fmt"
"strconv"
"math/rand"
)
var _ = fmt.Println
var _ = slices.Equal
var _ = sort.Slice
var _ = strconv.Atoi
var _ = rand.Int
func main() {
}Once you've formatted the imports, paste them in the textbox below. Only paste what's written within the import statement of the code, enter every imported package in a new line with double quotes, and remove unnecessary spaces and empty lines.