This is a straightforward port of https://github.com/anokhee/visual-synthesizer to Rust.
```rust use rand::SeedableRng;
fn main() -> std::io::Result<()> { let mut rng = randxorshift::XorShiftRng::fromentropy(); let mut file = std::fs::File::create("face.svg")?; svgface::generateface(&mut file, &mut rng) } ```