summaryrefslogtreecommitdiff
path: root/source/repl/repl.c
blob: dd289d8bf914f7b0e52a68c86d554ceb9a16743c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
internal void
init_repl()
{
    for(;;)
    {
        print("reading user input...");
        // TODO(nasr): design a repl system

        sleep(1);
    }

}