Implement ncurses

This commit is contained in:
sigonasr2, Sig, Sigo 2022-06-29 15:27:06 +00:00 committed by GitHub
parent 537af95226
commit c5cf279f4e
2 changed files with 11 additions and 0 deletions

BIN
main Executable file

Binary file not shown.

11
main.c
View File

@ -1 +1,12 @@
#include <stdlib.h>
#include <ncurses.h>
int main(char argc,char**argv) {
initscr();
printw("Hello World!");
refresh();
getch();
endwin();
return 0;
}