diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -1,7 +1,11 @@ -#include <stdio.h> - +#include <ncurses.h> int main() { - printf("Hello, world\n"); - return 0; + initscr(); + printw("Hello, world!"); + refresh(); + getch(); + endwin(); + + return 0; } |