//! A crisp API for reading and writing bytes
//!//! # Example
//!//! ```
//! use endive::add;
//!//! assert_eq!(add(2, 3), 5);
//! ```
// TODO: Write a library.
#[must_use]pubfnadd(a:i32, b:i32)->i32{
a + b
}#[cfg(test)]modtests{usesuper::*;#[test]fntest_add(){assert_eq!(add(2,3),5);}}