summaryrefslogtreecommitdiff
path: root/src/main.c
blob: 49db27a67b187e228aecef451764a2451789ae27 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <ncurses.h>

int main() {
	initscr();
	printw("Hello, world!");
	refresh();
	getch();
	endwin();

	return 0;
}