wordle-cli

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

commit 1e8fc6b50210c84a971787ea871c4a5f18ae0dc3
parent ed31a4bc69f4445f78d49fdc27dc2b2155f950f1
Author: Agastya Chandrakant <me@hanabi.in>
Date:   Fri, 18 Feb 2022 17:11:46 +0530

Add make clean instruction and to hell with .DS_Store.

Diffstat:
M.gitignore | 1+
Mmakefile | 2++
2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1 +1,2 @@ wordle +*/.DS_Store diff --git a/makefile b/makefile @@ -2,3 +2,5 @@ build: go build -o wordle src/main.go install: make build && mv wordle /usr/local/bin/ +clean: + rm wordle