1//! A simple neural network implementation in Rust. 2 3mod neural_network; 4 5// Re-export the NeuralNetwork struct to make it available at the crate root 6pub use neural_network::NeuralNetwork;