1//! A simple data structures library being created 2//! to get a grip on rust language. 3 4pub mod linked_list; 5 6pub use linked_list::LinkedList;