blob: 88edc88f0acc99acde6b07eac0d4c90ce2ce15c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
const std = @import("std");
pub const gc = @import("zisp/gc.zig");
pub const io = @import("zisp/io.zig");
pub const lib = @import("zisp/lib.zig");
pub const value = @import("zisp/value.zig");
pub const _test = @import("test/all.zig");
pub fn init() !void {
try gc.init();
try io.init();
}
test {
std.testing.refAllDecls(@This());
}
|