the readme is a ramble and there's no functionality (yet). couldn't ask
for a better start.
This commit is contained in:
2024-06-28 21:24:46 -07:00
commit eace0bf8db
63 changed files with 45346 additions and 0 deletions

8
src/main.zig Normal file
View File

@@ -0,0 +1,8 @@
const std = @import("std");
const ljack = @import("./ljacklm.zig");
pub fn main() !void {
const ver = ljack.GetDriverVersion();
std.debug.print("Driver version: {d}\n", .{ver});
}