Skip to content
/ fen Public

A Forsyth-Edwards notation with proper error handling

Notifications You must be signed in to change notification settings

ucarion/fen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

fen

A Rust Forsyth-Edwards notation parser with proper error handling.

extern crate fen;

let fen = "rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1";
let board = fen::BoardState::from_fen(fen).unwrap();
assert_eq!(fen, board.to_fen());

About

A Forsyth-Edwards notation with proper error handling

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages