box-o-sand/basics/hello_world.c
2009-11-18 19:41:30 -05:00

13 lines
140 B
C

#include <ncurses.h>
int main()
{
initscr();
printw("Hello World !!!");
refresh();
getch();
endwin();
return 0;
}