1#![forbid(unsafe_code)]
2#![doc = include_str!("../README.md")]
3
4pub mod error;
7pub mod prelude;
8pub mod progression;
9
10pub use error::SeriesError;
11pub use progression::{arithmetic_nth_term, arithmetic_sum, geometric_nth_term, geometric_sum};