The world's most clever kitty cat

Clean up

bwc9876.dev deecaccd 1b4c8600

verified
+1 -1
-1
src/brain.rs
··· 2 2 3 3 use serde::{Deserialize, Serialize}; 4 4 5 - 6 5 /// Some = Word, None = End Message 7 6 pub type Token = Option<String>; 8 7 pub type Weight = u16;
+1
src/main.rs
··· 1 1 #![feature(iter_map_windows)] 2 + #![allow(unused)] 2 3 3 4 mod brain; 4 5