ShadowEditor/server/test/slice/slice_test.go
2020-06-07 19:02:34 +08:00

11 lines
120 B
Go

package slice
import "testing"
func TestSlice(t *testing.T) {
a := []float64{}
a[1] = 3
t.Log(a[0])
t.Log(a[1])
}