Find a file
2021-09-25 01:42:56 -04:00
spec make_move no longer return SAN 2021-09-24 22:37:51 -04:00
src Fix FEN regex 2021-09-25 01:42:56 -04:00
.editorconfig Initial commit 2021-09-02 23:20:21 -04:00
.gitignore Initial commit 2021-09-02 23:20:21 -04:00
.travis.yml Initial commit 2021-09-02 23:20:21 -04:00
LICENSE Initial commit 2021-09-02 23:20:21 -04:00
README.md Refactor placement to own method 2021-09-04 19:48:12 -04:00
shard.yml Refactor placement to own method 2021-09-04 19:48:12 -04:00

lx_chess

A chess program written in crystal

Installation

shards build --release --no-debug

Usage

run lx_chess --help for usage information

Usage example:

╰─$ ./bin/lx_chess --fen "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"
8: ♜ ♞ ♝ ♛ ♚ ♝ ♞ ♜
7: ♟ ♟ ♟ ♟ ♟ ♟ ♟ ♟
6:
5:
4:
3:
2: ♟ ♟ ♟ ♟ ♟ ♟ ♟ ♟
1: ♜ ♞ ♝ ♛ ♚ ♝ ♞ ♜
   a b c d e f g h

Contributing

  1. Fork it (https://github.com/your-github-user/cr_lx_chess/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors