//! Coming soon: `clipper`: a cross-platform binary and Rust crate for piping to the system
//! clipboard
/// adds two integers
/// ## Example:
/// ```
/// use clipper::add; // FIXME
////// assert_eq!(add(1,1), 2);
/// ```
/// This is a doctest
pubfnadd(a:i32, b:i32)->i32{
a + b
}#[cfg(test)]modtests{usesuper::*;#[test]fnadder_unit_test(){assert_eq!(add(2,2),4);}}