fox/xrand/rand_test.go
2025-05-25 20:02:15 +08:00

10 lines
111 B
Go

package xrand
import "testing"
func TestShuffle(t *testing.T) {
a := []int{1, 2, 3}
Shuffle(a)
t.Log(a)
}