9 lines
99 B
Rust
9 lines
99 B
Rust
use chess::position::Position;
|
|
|
|
mod chess;
|
|
|
|
|
|
fn main() {
|
|
let mut position = Position::new();
|
|
}
|