factor-prime 0.1.1

Library for finding whether a number is prime or not and also determine its factors
Documentation
pub mod logic {
    pub mod prime {
        pub fn check_prime(num: u32) {
            if num % 2 == 0 || num % 3 == 0 || num % 5 == 0 || num % 7 == 0 {
                println!("Tabdeeli agai he")
            }
            else {
                println!("Number is not a prime number")
            }
        }
    }

    pub mod factors {
        pub fn check_factors(num: u32) {
            if num % 3 == 0 {
                println!("Men inko Rulaonga")
            }
            if num % 5 == 0 {
                println!("Mujhe Kion Nikala")
            }
            if num % 7 == 0 {
                println!("Barish hoti he toh Paani ata he")
            }
            else {
                println!("{}",num);
            }
        }
    }
}