fox/xrand/rand_test.go

10 lines
111 B
Go
Raw Normal View History

2025-05-25 20:02:15 +08:00
package xrand
import "testing"
func TestShuffle(t *testing.T) {
a := []int{1, 2, 3}
Shuffle(a)
t.Log(a)
}