How can we reverse a simple string in Go?
This works, without all the mucking about with functions:
func Reverse(s string) (result string) { for _,v := range s { result = string(v) + result } return }