Application Context Implementation #4

Closed
kayomn wants to merge 93 commits from event-loop-dev into main
2 changed files with 12 additions and 0 deletions
Showing only changes of commit d05800a6d3 - Show all commits

View File

@ -171,3 +171,7 @@ pub fn main() u8 {
return 0; return 0;
} }
test {
}

View File

@ -23,3 +23,11 @@ pub const stack = @import("./stack.zig");
/// ///
/// ///
pub const table = @import("./table.zig"); pub const table = @import("./table.zig");
test {
_ = io;
_ = mem;
_ = meta;
_ = stack;
_ = table;
}