my_fun/
lib.rs

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