1//! Phenotype library 2#![doc = include_str!("../README.md")] 3 4pub mod core { 5 //! Core functionality 6} 7 8#[cfg(test)] 9mod tests { 10 #[test] 11 fn it_works() { 12 assert_eq!(2 + 2, 4); 13 } 14}