summaryrefslogtreecommitdiff
path: root/main.c
blob: f83fe899e5718ffbeb230ad7116805e65d3f7029 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <u.h>
#include <libc.h>
#include <bio.h>

#include "dat.h"
#include "fns.h"

void usage(void);
void repl(int, char **);

void
main(int argc, char *argv[])
{
	clausenr = 2; /* Start at two since 0 is for the facts in the database, and 1 is for queries */
	initflags();
	initstreams();
	initmodules();
	repl(argc, argv);

	exits(nil);
}

void
usage(void)
{
	fprint(2, "Usage: pprolog [-d] modulefiles\n");
	exits("Usage");
}

void
repl(int argc, char *argv[])
{
	Term *args = nil;
	while(argc > 0){
		Term *arg = mkatom(runesmprint("%s", argv[argc-1]));
		args = appendterm(arg, args);
		argc--;
	}
	args = mklist(args);
	Term *mod = mkatom(L"repl");
	Term *pred = mkcompound(L"repl", 1, args);

	mod->next = pred;
	Term *goal = mkcompound(L":", 2, mod);
	evalquery(goal);	
}