treesummaryrefslogcommitdiff
path: root/main.c
blob: 8083b5cd6695fd3a19690e5186b91d6c32104043 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <pdcurses.h>

int main() {
    initscr();

    printw("Hallo");

    endwin();

    return 0;
}