Files
tank/code/test/main_test.go
T

15 lines
152 B
Go

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