code_snippets/c_projects/tiktaktoe/src/tiktaktoe.c

11 lines
133 B
C

#include "tiktaktoe.h"
int start_tiktaktoe(){
initscr();
printw("Hello World !!!");
refresh();
getch();
endwin();
return 0;
}