package tokenize import "strings" func Tokenize(str string) []string { tokens := strings.Fields(str) return tokens }