//! Small arithmetic helpers for documentation examples. /// Adds two unsigned integers. /// /// # Examples /// /// use demo_lib::add; /// /// assert_eq!(add(2, 3), 5); pub fn add(left: u64, right: u64) -> u64 { left + right }