Ticket #16724: curses_test.c

File curses_test.c, 123 bytes (added by benmwebb, 3 years ago)
Line 
1#include <ncurses.h>
2
3int main()
4{
5 initscr();
6 addstr("AAAAAAAAAA");
7 refresh();
8 getch();
9 endwin();
10 return 0;
11}