blob: fefba0a2c451476d30fcf5816d2cca365d81077b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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);
}
}
|