add (\=)/2.

This commit is contained in:
Mark Thom
2018-02-14 23:21:56 -07:00
parent a13501dc1a
commit f1ac75f21d
6 changed files with 39 additions and 30 deletions

View File

@@ -6,6 +6,7 @@ mod prolog;
#[macro_use] mod test_utils;
use prolog::io::*;
use prolog::lib::control::*;
use prolog::lib::lists::*;
use prolog::machine::*;
@@ -35,7 +36,8 @@ fn prolog_repl() {
let mut wam = Machine::new();
load_init_str(&mut wam, LISTS);
load_init_str(&mut wam, CONTROL);
loop {
print!("prolog> ");