Skip to content

trapvincenzo/go-terminal-wordle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wordle game for terminal

Who said you can't have fun on a terminal?

Let's play WORDLE then!

Screenshots

Screenshot 2023-03-31 at 12 28 25

Screenshot 2023-03-31 at 12 30 47

Fork it and have fun

The repo comes with a static word to be guessed but you can implement your own source! Just implement the Storage interface and you are done!

type Storage interface {
	GetWord() string
}

You wanna render it differently or you wanna create different implementaions for different terminals? Implement your own Renderer

type Renderer interface {
	Render(*game.Game)
	Print(string)
}

Technologies

The project is written in golang 1.20

Development

To run the app use the command

make run

to build the binary

make build

to run the tests

make test

Authors

Vincenzo Trapani

About

A different version of Wordle for terminal!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published