first pass with unsolved text wrapping bug
This commit is contained in:
parent
d4e1d84e5b
commit
f6a86434e2
8 changed files with 679 additions and 185 deletions
16
test.zig
Normal file
16
test.zig
Normal 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", .{});
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue