Rand Stats

Chess

github:grondilu

Chess

Chess-related stuff in Raku

PGN Grammar

use Chess::PGN;
say Chess::PGN.parse: "1. f3 e5 2. g4?? Qh4#";

FEN Grammar

use Chess::FEN;
say Chess::FEN.parse('rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1');

See the wikipedia article about FEN for more information.

General utilities

Displaying a chess position

use Chess;
show Chess::startpos;

Hopefully the code above should produce a nice representation of the starting position

This requires :

TODO