I'm trying to find the Go equivalent to python's hash function:
hash("test")
I've found this post which is a very similar function in the sense that it returns an integer, however, it uses fnv which appears to be a different hashing method to the python version
What I'm trying to do is pass a string to the hash function whereby it returns exactly the same integer in both languages for the same string.