public/subjects/reversesecondhalf/main.go

13 lines
238 B
Go

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