This commit is contained in:
2026-06-04 01:51:58 +02:00
parent b7ff71cb9e
commit a26eca2a63
23 changed files with 44 additions and 44 deletions
+1 -1
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});