We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 65c72f8Copy full SHA for 65c72f8
go.mod
@@ -0,0 +1,3 @@
1
+module github.com/axcdnt/go-mod-internals
2
+
3
+go 1.13
stringer/stringer.go
@@ -0,0 +1,8 @@
+package stringer
+import "strings"
4
5
+// Tokenize returns an array of strings splitted by space
6
+func Tokenize(data string) []string {
7
+ return strings.Split(data, " ")
8
+}
0 commit comments