From 976746e845966aa9a7b907b04561d60509ae1607 Mon Sep 17 00:00:00 2001 From: zainab Dnaya Date: Sat, 30 Jul 2022 03:47:28 +0100 Subject: [PATCH] Update README.md --- subjects/wordflip/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subjects/wordflip/README.md b/subjects/wordflip/README.md index 49d4d62c5..4e5bb6216 100644 --- a/subjects/wordflip/README.md +++ b/subjects/wordflip/README.md @@ -27,10 +27,10 @@ import ( ) func main() { - fmt.Print(WordFlip("First second last")) - fmt.Print(WordFlip("")) - fmt.Print(WordFlip(" ")) //all spaces - fmt.Print(WordFlip(" hello all of you! ")) + WordFlip("First second last") + WordFlip("") + WordFlip(" ") //all spaces + WordFlip(" hello all of you! ") } ``` @@ -43,4 +43,4 @@ last second First$ Invalid Output$ $ you! of all hello$ -``` \ No newline at end of file +```