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

#include "runes.h"

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

    setlocale(LC_ALL, "");

    runes_term_init(&t, argc, argv);

    uv_run(t.loop, UV_RUN_DEFAULT);

    runes_term_cleanup(&t);

    return 0;
}