]> Pileus Git - lackey/blob - src/main.c
Add template files
[lackey] / src / main.c
1 #include <ncurses.h>
2
3 int main(int argc, char **argv)
4 {
5         initscr();
6         printw("hello, world");
7         refresh();
8         getch();
9         endwin();
10
11         return 0;
12 }