Unknown state [2025-08-04]
This commit is contained in:
11
glfw-vulkan/scratch/defer.zig
Normal file
11
glfw-vulkan/scratch/defer.zig
Normal 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});
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user