9 lines
188 B
Rust
9 lines
188 B
Rust
use chs::{chess::perft::run_perft, constants::POSITION_6};
|
|
|
|
fn main() {
|
|
run_perft(
|
|
"rnb2k1r/pp1Pbppp/2p5/q7/2B5/P7/1PP1NnPP/RNBQK2R w KQ - 1 9",
|
|
1,
|
|
9,
|
|
);
|
|
}
|