const std = @import("std"); const nc = @import("notcurses.zig"); pub fn main() anyerror!void { var runtime = nc.init(); var plane = nc.stdplane(runtime); nc.plane_putchar_yx(plane, 1, 2, 'T'); while (true) { nc.render(runtime); } }