mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-24 12:46:10 +03:00
11 lines
210 B
Zig
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()) {}
|
|
}
|