I think it is worth mentioning that **do..while** loops can be achieved by prepending the body of the loop to the condition ```rust let x=1; // while loop while {x == 0}{ println!("This is not executed"); } // do while loop while { println!("This is executed"); x == 0 }{} ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by dempo93 and has received 1 comments.