Repetition using loops

Repetition

  • Called "looping" or "iteration"
  • Multiple types of loops
    • "loop" - infinite loop
    • "while" - conditional loop

Loop

Pasted image 20250726201731.png|400

let mut a = 0;
loop {
	if a == 5 {
		break;
	}
	println!"{:?}", a);
	a = a + 1;
}