aboutsummaryrefslogtreecommitdiffstats
path: root/runes.c
blob: 6ae04bccfa54e3957fb840964186433b126f26ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <locale.h>
#include <stdio.h>

#include "runes.h"

int main (int argc, char *argv[])
{
    RunesTerm *t;

    setlocale(LC_ALL, "");

    t = runes_term_create();

    runes_display_init(t);

    uv_run(t->loop, UV_RUN_DEFAULT);

    runes_term_destroy(t);

    return 0;
}