Files
misc/c/ncurses.c
2025-07-02 00:07:49 -07:00

19 lines
201 B
C

#include <ncurses.h>
int main() {
initscr();
start_color();
mvprintw(20, 20, "baller");
refresh();
getch();
clear();
mvprintw(10,30, "baller2");
getch();
endwin();
return 0;
}