mirror of
https://github.com/eyebluecn/tank.git
synced 2024-04-21 12:32:16 +00:00
16 lines
153 B
Go
16 lines
153 B
Go
package test
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
|
|
func TestHello(t *testing.T) {
|
|
|
|
split := strings.Split("good", "/")
|
|
fmt.Printf("%v", split)
|
|
|
|
}
|