ychess is a chess implementation written in nim.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
461 B

2 weeks ago
2 weeks ago
  1. # ychess
  2. ychess is a chess implementation written in nim.
  3. A chess engine is planned.
  4. ## Usage
  5. Simply download the code and run `nim c -r game.nim`.
  6. You can now play a 1v1 hotseat game of chess in the commandline.
  7. ## Testing
  8. Testing is done by `einheit` by [jyapayne](https://github.com/jyapayne/einheit).
  9. All legal chess moves are implemented in `chess.nim` and tested by the TestSuite
  10. in `test.nim`.
  11. You can simply run the tests with `nim c -r test.nim`.