hyperupcall 0.1.0

Cool package
Documentation
#[cfg(test)]
mod tests {
    // use super::*;
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }

    #[test]
    fn does_add() {
        let result = super::add(2, 5);
        assert_eq!(result, 7);
    }
}

pub fn add(a: i32, b: i32) -> i32 {
    a + b
}