hadean-zig/src/main.zig

8 lines
111 B
Zig
Raw Normal View History

2024-08-21 15:57:18 -04:00
const std = @import("std");
const engine = @import("engine.zig");
pub fn main() !void {
try engine.run();
}