set base for dev env makefile readme gitignore and a basic main.c

This commit is contained in:
smayzy
2025-12-06 20:06:26 +01:00
parent 0cbf4f7de6
commit 2242392d54
6 changed files with 76 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <ncurses.h>
int main()
{
initscr();
printw("Hello World !!!");
refresh();
getch();
endwin();
return 0;
}