My_Rust_crate 0.1.0

By using this crate you can print counting.For using this crate you write these in your main.rs file. 'exter crate My_Rust_Crate; ' , 'My_Rust_Crate::counting(start_value,end_value); '
Documentation
1
2
3
4
5
pub fn counting(start: i32,end: i32){
    for index in start..end{
        println!("Counting : {}",index);
    }
}