sandpile/
lib.rs

1//! `Sandpile` is a library to experiment with data structures known as Sandpiles.
2//! This was inspired from the Numberphile video on the same.
3
4pub mod sandpile;
5
6// Re-exporting the Sandpile struct 
7pub use self::sandpile::Sandpile;