Unknown state [2025-08-04]

This commit is contained in:
2025-08-04 22:23:16 -04:00
parent a145a60fa8
commit bc4b577d6f
4 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
const std = @import("std");
pub fn main() !void {
var i: usize = 0;
while (i < 10) {
i += 1;
if (i % 2 == 0)
continue;
std.debug.print("foo {d}\n", .{i});
}
}