12 lines
190 B
Go
12 lines
190 B
Go
package words
|
|
|
|
import (
|
|
"math/rand/v2"
|
|
"strings"
|
|
)
|
|
|
|
func GetRandomWord() string {
|
|
// https://stackoverflow.com/a/22876612/16804841
|
|
return strings.ToLower(Words[rand.IntN(len(Words))])
|
|
}
|