remove unused mut
This commit is contained in:
parent
711569b8e5
commit
aa9ef96804
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ use chess_engine::engine::Engine;
|
|||
use chess_engine::uci::UCI;
|
||||
|
||||
fn main() {
|
||||
let mut engine = Engine::new("Yakari".to_string(), "EiSiMo".to_string());
|
||||
let engine = Engine::new("Yakari".to_string(), "EiSiMo".to_string());
|
||||
let mut uci = UCI { engine };
|
||||
uci.uci_mainloop();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue