The world's most clever kitty cat
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Clean up

Ben C deecaccd 1b4c8600

+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