1 2 3 4 5 6 7 8 9 10 11
pub mod chromosome; pub mod genes; pub mod genotype; pub mod phenotype; pub mod population; pub use chromosome::*; pub use genes::*; pub use genotype::*; pub use phenotype::*; pub use population::*;