aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
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());
+}