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