confetty/array/array.go
2021-08-07 14:46:09 -04:00

10 lines
178 B
Go

package array
import "math/rand"
// Sample returns a random element from an array
// (can't wait for generics!)
func Sample(s []string) string {
return s[rand.Intn(len(s))]
}