This commit is contained in:
Armin Friedl 2025-01-18 15:40:22 +01:00
parent 4bd74bcb27
commit 1e0a951e6c

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});
}