initial commit
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 30s

This commit is contained in:
2024-11-09 21:24:42 +01:00
parent ff58e7ef69
commit 6d389bcd4b
21 changed files with 2738 additions and 0 deletions

12
src/zterm.zig Normal file
View File

@@ -0,0 +1,12 @@
// private imports
const terminal = @import("terminal.zig");
// public import / exports
pub const App = @import("app.zig").App;
pub const Renderer = @import("render.zig");
pub const Key = terminal.Key;
pub const Size = terminal.Size;
test {
_ = @import("queue.zig");
}