blob: 6edf8e6815275fec0dc79e9560d51727a14a3320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <ncurses.h>
int main()
{
// initscr(); /* Start curses mode */
// printw("Hello World !!!"); /* Print Hello World */
// refresh(); /* Print it on to the real screen */
// getch(); /* Wait for user input */
// endwin(); /* End curses mode */
return 0;
}
|