Counting_Crate 0.1.0

By using this crate you can print counting.For use this crate you can writer these lines in your project main.rs file. 'extern crate Counting_Crate; ' , 'Counting_Crate::counter(start value,end value); '
Documentation
1
2
3
4
5
pub fn counter(start: i32,end: i32){
    for index in start..end{
        println!("Counter: {}",index);
    }
}