myfunct 0.1.0

By using this libray you can print counting. For use this crate type these line in your main.rs. extern crate.MY_function. MY_function::Print_function(start,end).
Documentation
1
2
3
4
5
pub fn myfunct(start: i32,end: i32){
    for index in start..end{
        println!("counting {}",index );
    }
}