How can we reverse a simple string in Go?
For simple strings it possible to use such construction:
func Reverse(str string) string { if str != "" { return Reverse(str[1:]) + str[:1] } return "" }