Rename rest to code.

This commit is contained in:
zicla
2019-04-26 02:59:35 +08:00
parent 46256439da
commit ce84a9c9f0
67 changed files with 138 additions and 124 deletions

15
code/test/main_test.go Normal file
View File

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