28 lines
547 B
Markdown
28 lines
547 B
Markdown
|
|
# CORDLE - The C90 Version of Wordle
|
||
|
|
|
||
|
|
## Requirements
|
||
|
|
|
||
|
|
- C90 compiler (tested with gcc -std=c90)
|
||
|
|
- Standard C library
|
||
|
|
- Ncurses
|
||
|
|
|
||
|
|
## Build
|
||
|
|
|
||
|
|
```
|
||
|
|
$ ./build.sh
|
||
|
|
Building application.
|
||
|
|
Compile successful. Copying wordlists...
|
||
|
|
Build completed.
|
||
|
|
```
|
||
|
|
|
||
|
|
## Run
|
||
|
|
|
||
|
|
```
|
||
|
|
$ cd build/cordle
|
||
|
|
$ cordle
|
||
|
|
```
|
||
|
|
|
||
|
|
## Install
|
||
|
|
|
||
|
|
Just copy the `cordle` binary in the build directory to your `$PATH`. If you want to use the supplied wordlists, copy the `wordlists` directory to your binary directory as well. Or supply your own wordlist path using the command line options.
|