From de077d10359a3bed5259b766c37c94c1d7678a2b Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Wed, 15 Apr 2026 12:48:54 +0200 Subject: feat(lexer): simple separator --- src/root.zig | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/root.zig') 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()); +} -- cgit v1.2.3