zohaib 0.1.0

my first library
Documentation
1
2
3
4
5
pub fn cr(start:i32,end:i32){
    for i in start..end{
        println!("{}",i);
    }
}