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

View File

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