about summary refs log tree commit diff
path: root/src/monkey_learns/test.zig
blob: 47bfdfa2041eec1a215f6b662835602da6fc5873 (plain)
1
2
3
4
5
6
7
const std = @import("std");
const testing = std.testing;
pub const linear_regression = @import("linear_regression.zig");

test {
    testing.refAllDeclsRecursive(@This());
}