diff --git a/subjects/wordflip/README.md b/subjects/wordflip/README.md index 4e5bb621..d3c6a6c6 100644 --- a/subjects/wordflip/README.md +++ b/subjects/wordflip/README.md @@ -27,10 +27,10 @@ import ( ) func main() { - WordFlip("First second last") - WordFlip("") - WordFlip(" ") //all spaces - WordFlip(" hello all of you! ") + fmt.Print(WordFlip("First second last")) + fmt.Print(WordFlip("")) + fmt.Print(WordFlip(" ")) //all spaces + fmt.Print(WordFlip(" hello all of you! ")) } ```