first pass with unsolved text wrapping bug

This commit is contained in:
johan0A 2025-01-13 00:06:27 +01:00
parent d4e1d84e5b
commit f6a86434e2
8 changed files with 679 additions and 185 deletions

16
test.zig Normal file
View file

@ -0,0 +1,16 @@
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", .{});
});
}