In my application I will frequently pass references to a static string. I wish to avoid having Go allocate memory for each call, but I failed to get the address to my string
A string in go is immutable and is just a pointer and a length (total length : 2 words).
So you don't have to use a pointer to handle it efficiently.
Just pass the string.