//! # BTH_Crust
//!//! `bth_crust` is a collection of utilities to make performing certain
//! mathematical operations more convenient.
pubuseself::operations::add;pubuseself::operations::sub;pubmodoperations{/// Add two numbers together
////// ```
/// let x = 3;
/// let y = 5;
////// let result = bth_crust::add(x, y);
////// assert_eq!(result, 8);
/// ```
pubfnadd(x:i32, y:i32)->i32{
x + y
}/// Subtract two numbers together
////// ```
/// let x = 5;
/// let y = 3;
////// let result = bth_crust::sub(x, y);
////// assert_eq!(result, 2);
/// ```
pubfnsub(x:i32, y:i32)->i32{
x - y
}}