In my main function, I have a map that is the same as follows:
booksPresent := map[string]bool {
"Book One": true,
"Book Two": true,
"Book Three: true,
}
However, I want to declare this map globally. How can I do that?