diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-08-27 21:04:37 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-08-27 21:04:37 +0200 |
| commit | 28f47b8399c4f3c4a64921fb16e38e44e8ce749e (patch) | |
| tree | 53cde744130f2adf9c293fafde3c0a9c6a990d4b /src/root.zig | |
first commit
Diffstat (limited to 'src/root.zig')
| -rw-r--r-- | src/root.zig | 10 |
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, +}; |