clay-zig-bindings/test.zig
2025-01-13 00:06:27 +01:00

16 lines
268 B
Zig

const std = @import("std");
fn CLOSE(_: void) void {
std.debug.print("CLOSE\n", .{});
}
inline fn UI() fn (void) void {
std.debug.print("OPEN\n", .{});
return CLOSE;
}
pub fn main() !void {
UI()({
std.debug.print("INSIDE\n", .{});
});
}