package main import ( "fmt" ) func main() { fmt.Print(ReverseSecondHalf("This is the 1st half This is the 2nd half")) fmt.Print(ReverseSecondHalf("")) fmt.Print(ReverseSecondHalf("Hello World")) }