Using Ranges In For Loops

SOURCE CODE

fn main() {

  for alfa in (1..10) {
    println!("alfa is {}", alfa)
  }

}

CODE RUNNER