1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! # ADT
//!
//! `adt` is a set of Rust implementations of common abstract data types

//module imports
mod stack;

//use statements
pub use stack::stack::*;

//end of file