Browse Source

docs(stringtointslice): fix indentation

DEV-3376-pointers-drop-the-thread-multiple-issues
Tiago Collot 2 years ago
parent
commit
1b8355eac1
  1. 10
      subjects/stringtointslice/README.md

10
subjects/stringtointslice/README.md

@ -20,14 +20,14 @@ Here is a possible program to test your function:
package main
import (
"fmt"
"piscine"
"fmt"
"piscine"
)
func main() {
fmt.Println(piscine.StringToIntSlice("A quick brown fox jumps over the lazy dog"))
fmt.Println(piscine.StringToIntSlice("Converted this string into an int"))
fmt.Println(piscine.StringToIntSlice("hello THERE"))
fmt.Println(piscine.StringToIntSlice("A quick brown fox jumps over the lazy dog"))
fmt.Println(piscine.StringToIntSlice("Converted this string into an int"))
fmt.Println(piscine.StringToIntSlice("hello THERE"))
}
```

Loading…
Cancel
Save