Files
gf-lt/extra/twentyq.go
2025-05-01 07:08:03 +03:00

12 lines
171 B
Go

package extra
import "math/rand"
var (
chars = []string{"Shrek", "Garfield", "Jack the Ripper"}
)
func GetRandomChar() string {
return chars[rand.Intn(len(chars))]
}