This commit is contained in:
Jairinho 2024-05-06 18:19:06 -04:00
parent 95083a8c34
commit fc818d088d
Signed by: tangzero
GPG Key ID: 00C38159245F9F6D

View File

@ -18,7 +18,7 @@ pub fn main() void {
// Oh dear! This while loop will go forever?!
// Please fix this so the print statement below gives the desired output.
while (true) : (n += 1) {
if (???) ???;
if (n == 4) break;
}
// Result: we want n=4