remove cursor

This commit is contained in:
smayzy 2025-12-07 11:00:05 +01:00
parent 2242392d54
commit 2ac9b83a55

View File

@ -3,7 +3,9 @@
int main()
{
initscr();
printw("Hello World !!!");
noecho();
curs_set(0);
printw("Hello World");
refresh();
getch();
endwin();