While loop

202307072007
Status: #idea
Tags: Rust

While loop

while condition {
	// Some code here...
}

References

  1. https://rust-book.cs.brown.edu/ch03-05-control-flow.html#conditional-loops-with-while
  2. Control Flow