1
2
3
4
5
pub fn print_fun(open:i32,close:i32){
    for index in open..close{
        println!("Direction:{}",index);
    }
}