11 lines
133 B
C
11 lines
133 B
C
#include "tiktaktoe.h"
|
|
|
|
int start_tiktaktoe(){
|
|
initscr();
|
|
printw("Hello World !!!");
|
|
refresh();
|
|
getch();
|
|
endwin();
|
|
return 0;
|
|
}
|