wordle-cli

Golang implementation of wordle in CLI.
git clone http://git.hanabi.in/repos/wordle-cli.git
Log | Files | Refs | README | LICENSE

main.go (235B)


      1 package main
      2 
      3 import (
      4 	gameplay "git.hanabi.in/dev/wordle-cli/src/utils"
      5 )
      6 
      7 func main() {
      8 	answer := gameplay.SelectAnswer()
      9 	guesses, didWin := gameplay.StartGuessing(answer)
     10 	gameplay.GracefullyFinishGame(answer, guesses, didWin)
     11 }