You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-rust-examples/fern_sim/src/lib.rs

14 lines
258 B
Rust

//! Simulate the growth of ferns, from the level of
//! individual cells on up.
pub mod cells;
pub mod plant_structures;
pub mod simulation;
pub mod spores;
pub use plant_structures::Fern;
pub use simulation::Terrarium;
pub mod net;
pub use net::connect;