correct marker bug, edit README.

This commit is contained in:
Mark Thom
2018-01-27 01:27:17 -07:00
parent 1412071ea9
commit f939a9e129
5 changed files with 28 additions and 17 deletions

View File

@@ -1172,7 +1172,9 @@ fn test_queries_on_conditionals()
assert_prolog_success!(&mut wam, "?- catch(test(a, [a]), type_error(E), true).",
[["E = _6"], ["E = _6"]]);
//TODO: write tests for calling ;, ->, confirm behavior is correct.
//TODO: write tests for calling ;, ->, to confirm behavior is correct.
assert_prolog_success!(&mut wam, "?- f(X), call(->, atomic(X), true).",
[["X = a"], ["X = b"]]);
}
#[test]