summaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-09-02 08:17:42 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-09-02 08:17:42 +0200
commit6c2e06ed20cdea1a67629554d8aa1d5fcda030f9 (patch)
treee5fa1f199a35e455917f661a62b38505afa703d7 /src/root.zig
parent804204db7cf1e8a28defd359d17fa72949e13eff (diff)
Implement sequences and tuples
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/root.zig b/src/root.zig
index c45470f..0f4d9a2 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -4,13 +4,15 @@ const err = @import("error.zig");
pub const Exception = err.Exception;
pub const Object = @import("object.zig").Object;
-pub const Dict = @import("dict.zig").Dict;
-pub const Watcher = @import("Watcher.zig");
+pub const Type = @import("type/root.zig").Type;
+pub const Dict = @import("dict/root.zig").Dict;
pub const Str = @import("str.zig").Str;
pub const Tuple = @import("tuple.zig").Tuple;
pub const Int = @import("int.zig").Int;
pub const Float = @import("float.zig").Float;
pub const List = @import("list.zig").List;
+pub const Sequence = @import("sequence/root.zig").Sequence;
+pub const StructSequence = @import("struct-sequence.zig").StructSequence;
pub const Interpreter = @import("Interpreter.zig");