You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
153 B
16 lines
153 B
|
7 years ago
|
package test
|
||
|
7 years ago
|
|
||
|
|
import (
|
||
|
7 years ago
|
"fmt"
|
||
|
|
"strings"
|
||
|
7 years ago
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
7 years ago
|
|
||
|
7 years ago
|
func TestHello(t *testing.T) {
|
||
|
7 years ago
|
|
||
|
7 years ago
|
split := strings.Split("good", "/")
|
||
|
|
fmt.Printf("%v", split)
|
||
|
7 years ago
|
|
||
|
|
}
|