diff options
| author | Alexander Rolley <arolley35@gmail.com> | 2025-02-14 11:06:32 +0100 |
|---|---|---|
| committer | Alexander Rolley <arolley35@gmail.com> | 2025-02-14 11:06:32 +0100 |
| commit | 080bb49438fe770164382e2ac109dd8283600b16 (patch) | |
| tree | 63c3f518c92159d0225d7285fbab284f1704faff /src/estd/root.zig | |
| parent | 7313faeb25476147208f0b03c9261f6e6bec52eb (diff) | |
Start on stdio.
Diffstat (limited to 'src/estd/root.zig')
| -rw-r--r-- | src/estd/root.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/estd/root.zig b/src/estd/root.zig index 5ff292e..84f1fcb 100644 --- a/src/estd/root.zig +++ b/src/estd/root.zig @@ -3,6 +3,7 @@ const std = @import("std"); pub const cursor = @import("cursor.zig"); pub const parser = @import("parser/root.zig"); pub const graphics = @import("graphics/root.zig"); +pub const io = @import("io/root.zig"); test { std.testing.refAllDecls(@This()); |