summaryrefslogtreecommitdiff
path: root/main.prolog
blob: ef23f4f07061934a0e912ec695797696349c82d7 (plain)
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


:- consult('parser.prolog').
:- consult('agent.prolog').
:- consult('command.prolog').




play :-
    init,
    look,
    playLoop.


playLoop :-
    prompt(Line),
    evalLine(Line).


evalLine(Line) :-
    getCommand(Line,Command),
    Command,
    playLoop.


evalLine(_) :-
    write('What?\n\n'),
    playLoop.


quit :-
    halt(0).