samba/pkg/xrand/rand_test.go
2025-06-04 09:51:39 +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)
}