gitee.com/quant1x/num@v0.3.2/zeros_test.go (about)

     1  package num
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestZeros(t *testing.T) {
     9  	r1 := Zeros[int](5)
    10  	fmt.Println(r1)
    11  }