I was researching how to use Golang's Template.FuncMap()
and found a data access issue in:
https://www.calhoun.io/intro-to-templates-p3-functions/
The section in question:
# Making our functions globally useful
Next we need to define our function that uses a closure. This is basically a fancy way of saying we are
going to define a dynamic function that has access to variables that are not necessarily passed into it,
but are available when we define the function.