This commit is contained in:
Adam Millerchip 2021-12-25 18:55:35 +09:00
parent 534bead477
commit e5ec1b6e5a
1 changed files with 1 additions and 1 deletions

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