Skip to content

Super simple implementation of Wordle in (hopefully) POSIX shell

Notifications You must be signed in to change notification settings

JoaoCostaIFG/PosixWordle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Wordle in POSIX shell

Implementation of wordle in POSIX shell (at least I think it is POSIX compliant). Inspired by this bash implementation of the game.

Dictionary

I got the one in the repo from here.

You can use any dictionary you want (dict file). You can include any words of any size in this dictionary, but the game will only use words of length 5.

Problems

This implementation has the common problem of the "repeated characters":

  • The word is times;
  • The guess is abyss;
  • The last s would be green (correct guess in correct place);
  • The first s would be yellow (correct guess in wrong place) which isn't accurate => there is only 1 s in the target word.

It also allows you to guess complete gibberish words.

About

Super simple implementation of Wordle in (hopefully) POSIX shell

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages