diff options
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, +}; |