Repetition using while

Pasted image 20250727214739.png|200

fn main() {
	let mut i = 1;
	while i <= 3{
		println!("{i}");
		i = i + 1;
	}
}