summaryrefslogtreecommitdiff
path: root/src/main.zig
diff options
context:
space:
mode:
authorGravatar Jose Colon Rodriguez2024-02-12 06:48:45 -0400
committerGravatar Jose Colon Rodriguez2024-02-12 06:48:45 -0400
commit32e2303b67ab28aade9d6b2fd75953d966bd2c68 (patch)
tree51f6a4dfef1fe2495da8364600d201b8bedc8816 /src/main.zig
parentinit (diff)
downloadzg-32e2303b67ab28aade9d6b2fd75953d966bd2c68.tar.gz
zg-32e2303b67ab28aade9d6b2fd75953d966bd2c68.tar.xz
zg-32e2303b67ab28aade9d6b2fd75953d966bd2c68.zip
Created Trie
Diffstat (limited to 'src/main.zig')
-rw-r--r--src/main.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig
index 5de7458..b517641 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -17,3 +17,7 @@ pub fn main() !void {
17 17
18 std.debug.print("result: {}, took: {}\n", .{ result, timer.lap() / std.time.ns_per_ms }); 18 std.debug.print("result: {}, took: {}\n", .{ result, timer.lap() / std.time.ns_per_ms });
19} 19}
20
21test {
22 _ = @import("trie.zig");
23}