calculator-catitodev 0.2.0

Biblioteca simples para operação com i32
Documentation
mod calk1;
mod calk2;

pub use calk1::func_calk1;
pub use calk2::func_calk2;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_calk1() {
        func_calk1();
    }

    #[test]
    fn test_calk2() {
        func_calk2();
    }
}