Browse Source

Update README.md

DEV-3178-new-go-exercise-wordflip
zainab Dnaya 2 years ago committed by GitHub
parent
commit
bf464b6e0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      subjects/wordflip/README.md

8
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! "))
}
```

Loading…
Cancel
Save