This commit is contained in:
Jairinho 2024-05-06 18:17:44 -04:00
parent 5c099517a1
commit 2cb6aa0b88
Signed by: tangzero
GPG Key ID: 00C38159245F9F6D

View File

@ -25,7 +25,7 @@ pub fn main() void {
// Please set the continue expression so that we get the desired
// results in the print statement below.
while (n < 1000) : ??? {
while (n < 1000) : (n *= 2) {
// Print the current number
std.debug.print("{} ", .{n});
}