aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-04-15 12:48:54 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2026-04-15 12:48:54 +0200
commitde077d10359a3bed5259b766c37c94c1d7678a2b (patch)
tree27a948b0c576480ecafa3c28d77408eae07da46c /src/root.zig
parenta432d44d035508da5e0e67fde2327eaf1a41f382 (diff)
feat(lexer): simple separator
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/root.zig b/src/root.zig
index 5f58050..8e90eb0 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -1,4 +1,5 @@
const std = @import("std");
+const lexer = @import("lexer/lexer.zig");
pub fn bufferedPrint() !void {
// Stdout is for the actual output of your application, for example if you
@@ -20,3 +21,7 @@ pub fn add(a: i32, b: i32) i32 {
test "basic add functionality" {
try std.testing.expect(add(3, 7) == 10);
}
+
+test {
+ std.testing.refAllDeclsRecursive(@This());
+}