2 releases
0.1.1 | Nov 28, 2024 |
---|---|
0.1.0 | Nov 28, 2024 |
#3 in #behind
251 downloads per month
2KB
This crate's lib.rs
is:
pub fn add(left: u64, right: u64) -> u64 {
left + right
}
#[cfg(debug_assertions)]
pub fn debug_add(left: u64, right: u64) {
dbg!(add(left, right));
}
#[cfg(test)]
pub fn test_add(left: u64, right: u64, expected: u64) {
assert_eq!(add(left, right), expected);
}
Check what items are available by user.