This commit is contained in:
Adam Millerchip 2021-12-25 18:51:29 +09:00
parent 89d17b05a3
commit 534bead477
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ pub fn main() void {
var n: u32 = 2;
// Please use a condition that is true UNTIL "n" reaches 1024:
while (???) {
while (n < 1024) {
// Print the current number
std.debug.print("{} ", .{n});