input_crate/
lib.rs

1pub fn counter (start:i32,end:i32){
2    for index in start..end{
3        println!("Counter {}",index);
4    }
5}