diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa60fb9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/terdle diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..17dd2c4 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +terdle: terdle.c + gcc -std=c99 -o terdle terdle.c diff --git a/README.md b/README.md index 62bb9ea..9eaeefd 100644 --- a/README.md +++ b/README.md @@ -1 +1,5 @@ -Proof that wordle is solvable in 6 moves. +# terdle + +originally attempting to prove that wordle is solvable in 6 moves, + +now just another command-line wordle client diff --git a/wordle.c b/terdle.c similarity index 100% rename from wordle.c rename to terdle.c