tank/code/test/main_test.go
2019-04-26 14:32:15 +08:00

15 lines
152 B
Go

package test
import (
"fmt"
"strings"
"testing"
)
func TestHello(t *testing.T) {
split := strings.Split("good", "/")
fmt.Printf("%v", split)
}