ghostty/src/main.zig
Mitchell Hashimoto a78e1894f8 minimal raylib window
2022-03-31 17:27:07 -07:00

11 lines
210 B
Zig

const std = @import("std");
const c = @import("c.zig");
pub fn main() !void {
c.InitWindow(640, 480, "ghostty");
c.SetTargetFPS(60);
defer c.CloseWindow();
while (!c.WindowShouldClose()) {}
}