DEV Community

Discussion on: Daily Challenge #138 - Keep Up the Hoop

Collapse
 
vaibhavyadav1998 profile image
Vaibhav Yadav

In Go.

func hoop(n int) string {
    if n >= 10 {
        return "Great, now move on to tricks"
    }
    return  "Keep at it until you get it"
}