diff options
author | Jed Barber <jjbarber@y7mail.com> | 2014-04-04 01:48:43 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2014-04-04 01:48:43 +1100 |
commit | 19e66dbd8fd3bd66f286bbbcd7ce842d727a4422 (patch) | |
tree | 07f0d484b32c9792a5d18921048243d5ed924873 /src/main.prolog | |
parent | b2081e26122b3937f04caa62ec864fc343f83ef1 (diff) |
Makefile added, files reorganised
Diffstat (limited to 'src/main.prolog')
-rw-r--r-- | src/main.prolog | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/main.prolog b/src/main.prolog new file mode 100644 index 0000000..ef23f4f --- /dev/null +++ b/src/main.prolog @@ -0,0 +1,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). + |