hangman/internal/words/get_words.go
2025-06-30 12:15:58 +02:00

11 lines
162 B
Go

package words
import (
"math/rand/v2"
)
func GetRandomWord() string {
// https://stackoverflow.com/a/22876612/16804841
return Words[rand.IntN(len(Words))]
}