Skip to content

Commit 65c72f8

Browse files
committed
Initial commit
0 parents  commit 65c72f8

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/axcdnt/go-mod-internals
2+
3+
go 1.13

stringer/stringer.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package stringer
2+
3+
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

Comments
 (0)