32-bits pcgwithxorshift random number generator
use pcgwithxorshift::{PcgWithXorshift, RandomNumberGeneratorEngine};
fn main() {
let mut pcg = PcgWithXorshift::new(None);
let number = pcg.get();
}
https://www.pcg-random.org/
https://github.com/flo-at/rustsnake.git