about summary refs log tree commit diff
path: root/src/monkey_brain/main.zig
blob: 611dcd1f808a51c90159cbda88e89fdf7a5a1946 (plain)
1
2
3
4
5
const perceptron = @import("perceptron.zig");

pub fn main() !void {
    try perceptron.demo();
}