summaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-08-27 21:04:37 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-08-27 21:04:37 +0200
commit28f47b8399c4f3c4a64921fb16e38e44e8ce749e (patch)
tree53cde744130f2adf9c293fafde3c0a9c6a990d4b /src/root.zig
first commit
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/root.zig b/src/root.zig
new file mode 100644
index 0000000..0e3d9e4
--- /dev/null
+++ b/src/root.zig
@@ -0,0 +1,10 @@
+const std = @import("std");
+
+pub const Object = @import("Object.zig");
+pub const Interpreter = @import("Interpreter.zig");
+pub const Dict = @import("Dict.zig");
+pub const Str = @import("Str.zig");
+
+pub const Error = error {
+ Exception,
+};