Microkernel thing OS experiment (Zig ⚡)
at dev 159 B view raw
1const std = @import("std"); 2pub fn build(b: *std.Build) void { 3 _ = b.addModule("console", .{ 4 .root_source_file = b.path("src/root.zig"), 5 }); 6}