1//! # ADT 2//! 3//! `adt` is a set of Rust implementations of common abstract data types 4 5//module imports 6mod stack; 7 8//use statements 9pub use stack::stack::*; 10 11//end of file